summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2013-11-13 23:28:24 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2013-11-13 23:30:47 +0100
commitfbfa569efddd383509c9346b6d577192f0f386d0 (patch)
treea59e15f55726b9e2c6327641002dc82390d3e0e7 /pkgs/development/tools
parenta8d63681dbde6b343a727df0fc9c5a3130f8f242 (diff)
downloadnixlib-fbfa569efddd383509c9346b6d577192f0f386d0.tar
nixlib-fbfa569efddd383509c9346b6d577192f0f386d0.tar.gz
nixlib-fbfa569efddd383509c9346b6d577192f0f386d0.tar.bz2
nixlib-fbfa569efddd383509c9346b6d577192f0f386d0.tar.lz
nixlib-fbfa569efddd383509c9346b6d577192f0f386d0.tar.xz
nixlib-fbfa569efddd383509c9346b6d577192f0f386d0.tar.zst
nixlib-fbfa569efddd383509c9346b6d577192f0f386d0.zip
stlink: fix chroot build
Add sha256 attribute to fetchgit to make it a fixed-output derivation
(needed for chroot builds).
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/stlink/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/stlink/default.nix b/pkgs/development/tools/misc/stlink/default.nix
index 68c7fed0812f..c4dfa99becdc 100644
--- a/pkgs/development/tools/misc/stlink/default.nix
+++ b/pkgs/development/tools/misc/stlink/default.nix
@@ -13,6 +13,7 @@ stdenv.mkDerivation {
   src = fetchgit {
     url = git://github.com/texane/stlink.git;
     rev = "5be889e3feb75fc7f594012c4855b4dc16940050";
+    sha256 = "1xbfr1kz4k6hhl0xpqn1vi83fdynjxx3ymn9gb7b0pb7h6ncjcyr";
   };
 
   buildInputs = [ autoconf automake libtool pkgconfig libusb1 ];