1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #8128 from monocell/add-crackxls

fix crackxls libgsf dependency and naming problem
This commit is contained in:
lethalman 2015-06-02 15:02:28 +02:00
commit f9c6921f0a

View file

@ -1,17 +1,17 @@
{ stdenv, fetchgit, autoconf, automake, openssl, libgsf }: { stdenv, fetchgit, pkgconfig, autoconf, automake, openssl, libgsf, gmp }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "crackxls-${version}"; name = "crackxls-${version}";
version = "v0.4"; version = "0.4";
src = fetchgit { src = fetchgit {
url = https://github.com/GavinSmith0123/crackxls2003.git; url = https://github.com/GavinSmith0123/crackxls2003.git;
rev = "refs/tags/${version}"; rev = "refs/tags/v${version}";
sha256 = "0q5jl7hcds3f0rhly3iy4fhhbyh9cdrfaw7zdrazzf1wswwhyssz"; sha256 = "0q5jl7hcds3f0rhly3iy4fhhbyh9cdrfaw7zdrazzf1wswwhyssz";
}; };
buildInputs = [ openssl libgsf automake autoconf ]; buildInputs = [ pkgconfig autoconf automake openssl libgsf gmp ];
installPhase = installPhase =
'' ''