about summary refs log tree commit diff
path: root/pkgs/applications/editors/tiled/default.nix
diff options
context:
space:
mode:
authordywedir <dywedir@pm.me>2019-03-14 01:41:25 +0200
committerdywedir <dywedir@pm.me>2019-03-14 01:41:25 +0200
commit92ea2c2ffd1d069e4b9f29a683d08810c332db9d (patch)
tree94f5ad8d62f761ff3e950f7e6ee15ac4b0d2a2c9 /pkgs/applications/editors/tiled/default.nix
parent0a8d74d95761c32147a72f16954455e64f33ba13 (diff)
tiled: 1.2.2 -> 1.2.3
Diffstat (limited to 'pkgs/applications/editors/tiled/default.nix')
-rw-r--r--pkgs/applications/editors/tiled/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix
index ecdd7853d70c1..1cfb04b7b2ef9 100644
--- a/pkgs/applications/editors/tiled/default.nix
+++ b/pkgs/applications/editors/tiled/default.nix
@@ -2,14 +2,14 @@
 , python, qtbase, qttools }:
 
 stdenv.mkDerivation rec {
-  name = "tiled-${version}";
-  version = "1.2.2";
+  pname = "tiled";
+  version = "1.2.3";
 
   src = fetchFromGitHub {
     owner = "bjorn";
-    repo = "tiled";
+    repo = pname;
     rev = "v${version}";
-    sha256 = "1yqw10izqhsnqwgxvws2n4ymcwawbh86srv7qmjwbsay752pfgfh";
+    sha256 = "1zsfhw539zwyf5qfnirzkkgy5bmrrs2cry4gimrhpky9fjlaa9h8";
   };
 
   nativeBuildInputs = [ pkgconfig qmake ];