summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2014-10-04 16:38:09 +0400
committerMichael Raskin <7c6f434c@mail.ru>2014-10-04 16:38:09 +0400
commitfdad3e566177461c74c3410aad3e8065a5303bbe (patch)
treea24a55d8a14cc7626d05f670920e844c20595547 /pkgs
parent6bbeeb46a372e1a949e0bb561ae55e98c4a05b71 (diff)
downloadnixpkgs-fdad3e566177461c74c3410aad3e8065a5303bbe.tar
nixpkgs-fdad3e566177461c74c3410aad3e8065a5303bbe.tar.gz
nixpkgs-fdad3e566177461c74c3410aad3e8065a5303bbe.tar.bz2
nixpkgs-fdad3e566177461c74c3410aad3e8065a5303bbe.tar.lz
nixpkgs-fdad3e566177461c74c3410aad3e8065a5303bbe.tar.xz
nixpkgs-fdad3e566177461c74c3410aad3e8065a5303bbe.tar.zst
nixpkgs-fdad3e566177461c74c3410aad3e8065a5303bbe.zip
Geeqie release is a Git tag, apparently Gitorious gave non-deterministic archive
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/graphics/geeqie/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/graphics/geeqie/default.nix b/pkgs/applications/graphics/geeqie/default.nix
index 6636d5fc9ec..e914186ac81 100644
--- a/pkgs/applications/graphics/geeqie/default.nix
+++ b/pkgs/applications/graphics/geeqie/default.nix
@@ -1,13 +1,14 @@
-{ stdenv, fetchurl, pkgconfig, autoconf, automake, gtk, libpng, exiv2, lcms
+{ stdenv, fetchgit, pkgconfig, autoconf, automake, gtk, libpng, exiv2, lcms
 , intltool, gettext, libchamplain, fbida }:
 
 stdenv.mkDerivation rec {
   name = "geeqie-${version}";
   version = "1.2";
 
-  src = fetchurl {
-    url = "https://gitorious.org/geeqie/geeqie/archive/v${version}.tar.gz";
-    sha256 = "13sgf20h0z8dz1075vmyh8vbxgchq30cqrl15zfv9h8hp271vpfj";
+  src = fetchgit {
+    url = "git://gitorious.org/geeqie/geeqie.git";
+    rev = "refs/tags/v${version}";
+    sha256 = "1h9w0jrcqcp5jjgmks5pvpppnfxhcd1s3vqlyb3qyil2wfk8n8wp";
   };
 
   preConfigure = "./autogen.sh";