summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/security/crackxls
diff options
context:
space:
mode:
authorEmil Rangden <emil.rangden@chas.se>2015-06-02 13:21:53 +0200
committerEmil Rangden <emil.rangden@chas.se>2015-06-02 13:21:53 +0200
commit6eb4fdeb4d87847f7196115043ffd11dd7ee2985 (patch)
treedc20491c88051e7e553e2dc8753df7c3f24537af /pkgs/tools/security/crackxls
parentee8ac51986949522a51418b5ce650aaf2fe82da0 (diff)
fix crackxls libgsf dependency
Diffstat (limited to 'pkgs/tools/security/crackxls')
-rw-r--r--pkgs/tools/security/crackxls/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/security/crackxls/default.nix b/pkgs/tools/security/crackxls/default.nix
index c593650dbd45..37e3e048a767 100644
--- a/pkgs/tools/security/crackxls/default.nix
+++ b/pkgs/tools/security/crackxls/default.nix
@@ -1,17 +1,17 @@
-{ stdenv, fetchgit, autoconf, automake, openssl, libgsf }:
+{ stdenv, fetchgit, pkgconfig, autoconf, automake, openssl, libgsf, gmp }:
stdenv.mkDerivation rec {
name = "crackxls-${version}";
- version = "v0.4";
+ version = "0.4";
src = fetchgit {
url = https://github.com/GavinSmith0123/crackxls2003.git;
- rev = "refs/tags/${version}";
+ rev = "refs/tags/v${version}";
sha256 = "0q5jl7hcds3f0rhly3iy4fhhbyh9cdrfaw7zdrazzf1wswwhyssz";
};
- buildInputs = [ openssl libgsf automake autoconf ];
+ buildInputs = [ pkgconfig autoconf automake openssl libgsf gmp ];
installPhase =
''