about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/qxw/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/editors/qxw/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/editors/qxw/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/editors/qxw/default.nix b/nixpkgs/pkgs/applications/editors/qxw/default.nix
new file mode 100644
index 000000000000..2d2af2ce508e
--- /dev/null
+++ b/nixpkgs/pkgs/applications/editors/qxw/default.nix
@@ -0,0 +1,32 @@
+{ lib, stdenv, fetchurl, pkg-config, gtk2, pcre }:
+
+stdenv.mkDerivation rec {
+  pname = "qxw";
+  version = "20200708";
+
+  src = fetchurl {
+    url = "https://www.quinapalus.com/qxw-${version}.tar.gz";
+    sha256 = "1si3ila7137c7x4mp3jv1q1mh3jp0p4khir1yz1rwy0mp3znwv7d";
+  };
+
+  nativeBuildInputs = [ pkg-config ];
+  buildInputs = [ gtk2 pcre ];
+
+  makeFlags = [ "DESTDIR=$(out)" ];
+
+  patchPhase = ''
+    sed -i 's/ `dpkg-buildflags[^`]*`//g;
+            /mkdir -p/d;
+            s/cp -a/install -D/;
+            s,/usr/games,/bin,' Makefile
+  '';
+
+  meta = with lib; {
+    description = "A program to help create and publish crosswords";
+    homepage = "https://www.quinapalus.com/qxw.html";
+    license = licenses.gpl2;
+    maintainers = [ maintainers.tckmn ];
+    platforms = platforms.linux;
+    mainProgram = "qxw";
+  };
+}