about summary refs log tree commit diff
path: root/pkgs/applications/misc/gosmore
diff options
context:
space:
mode:
authorMatthias C. M. Troffaes <matthias.troffaes@gmail.com>2015-12-14 15:33:51 +0000
committerMatthias C. M. Troffaes <matthias.troffaes@gmail.com>2015-12-14 15:33:51 +0000
commit75d292f173ced7124ac3b2124863ec1b99e9ce9d (patch)
treefde45c7718e88746971da56f170af5395c98d3ba /pkgs/applications/misc/gosmore
parent59e33d42e44025b6d8f9f64300fa4f0e12a3f16e (diff)
downloadnixlib-75d292f173ced7124ac3b2124863ec1b99e9ce9d.tar
nixlib-75d292f173ced7124ac3b2124863ec1b99e9ce9d.tar.gz
nixlib-75d292f173ced7124ac3b2124863ec1b99e9ce9d.tar.bz2
nixlib-75d292f173ced7124ac3b2124863ec1b99e9ce9d.tar.lz
nixlib-75d292f173ced7124ac3b2124863ec1b99e9ce9d.tar.xz
nixlib-75d292f173ced7124ac3b2124863ec1b99e9ce9d.tar.zst
nixlib-75d292f173ced7124ac3b2124863ec1b99e9ce9d.zip
gosmore: once more fix broken hash and disable externals for now to prevent further breakage
Diffstat (limited to 'pkgs/applications/misc/gosmore')
-rw-r--r--pkgs/applications/misc/gosmore/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/misc/gosmore/default.nix b/pkgs/applications/misc/gosmore/default.nix
index 67c21aea9e6f..e894ace0d45c 100644
--- a/pkgs/applications/misc/gosmore/default.nix
+++ b/pkgs/applications/misc/gosmore/default.nix
@@ -5,10 +5,14 @@ let
 in
 stdenv.mkDerivation {
   name = "gosmore-r${version}";
+  # the gosmore svn repository does not lock revision numbers of its externals
+  # so we explicitly disable them to avoid breaking the hash
+  # especially as the externals appear to be unused
   src = fetchsvn {
     url = http://svn.openstreetmap.org/applications/rendering/gosmore;
-    sha256 = "0i6m3ikavsaqhfy18sykzq0cflw978nr4fhg18hawndcmr45v5zj";
+    sha256 = "0qsckpqx7i7f8gkqhkzdamr65250afk1rpnh3nbman35kdv3dsxi";
     rev = "${version}";
+    ignoreExternals = true;
   };
 
   buildInputs = [ libxml2 gtk curl ];