summary refs log tree commit diff
path: root/pkgs/applications/editors/qxw
diff options
context:
space:
mode:
authorAndy Tockman <andy@tck.mn>2020-09-18 17:58:38 -0500
committerAndy Tockman <andy@tck.mn>2020-09-18 17:58:38 -0500
commit56cb90bddf1a06249a6a2b4e4cabcea0e65391ff (patch)
treee21ab12497e8c1b84e1d21408646b4b2306e4d46 /pkgs/applications/editors/qxw
parent262e5b254b9d3525be74efdf21a98bcc4ba76cdc (diff)
downloadnixpkgs-56cb90bddf1a06249a6a2b4e4cabcea0e65391ff.tar
nixpkgs-56cb90bddf1a06249a6a2b4e4cabcea0e65391ff.tar.gz
nixpkgs-56cb90bddf1a06249a6a2b4e4cabcea0e65391ff.tar.bz2
nixpkgs-56cb90bddf1a06249a6a2b4e4cabcea0e65391ff.tar.lz
nixpkgs-56cb90bddf1a06249a6a2b4e4cabcea0e65391ff.tar.xz
nixpkgs-56cb90bddf1a06249a6a2b4e4cabcea0e65391ff.tar.zst
nixpkgs-56cb90bddf1a06249a6a2b4e4cabcea0e65391ff.zip
qxw: 20190909 -> 20200708
Diffstat (limited to 'pkgs/applications/editors/qxw')
-rw-r--r--pkgs/applications/editors/qxw/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/editors/qxw/default.nix b/pkgs/applications/editors/qxw/default.nix
index 7c5b6408cea..aed69e4f568 100644
--- a/pkgs/applications/editors/qxw/default.nix
+++ b/pkgs/applications/editors/qxw/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, pkg-config, gtk2, pcre }:
 
-let version = "20190909"; in stdenv.mkDerivation {
-  inherit version;
+stdenv.mkDerivation rec {
   pname = "qxw";
+  version = "20200708";
 
   src = fetchurl {
     url = "https://www.quinapalus.com/qxw-${version}.tar.gz";
-    sha256 = "1w6f2c70lbdbi2dvh3rm463ai20fhfnnxf205kyyl46gz141kz48";
+    sha256 = "1si3ila7137c7x4mp3jv1q1mh3jp0p4khir1yz1rwy0mp3znwv7d";
   };
 
   nativeBuildInputs = [ pkg-config ];
@@ -23,9 +23,9 @@ let version = "20190909"; in stdenv.mkDerivation {
 
   meta = with stdenv.lib; {
     description = "A program to help create and publish crosswords";
-    homepage    = https://www.quinapalus.com/qxw.html;
-    license     = licenses.gpl2;
+    homepage = "https://www.quinapalus.com/qxw.html";
+    license = licenses.gpl2;
     maintainers = [ maintainers.tckmn ];
-    platforms   = platforms.linux;
+    platforms = platforms.linux;
   };
 }