nixpkgs/pkgs/tools/security/crackxls/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

30 lines
782 B
Nix

{ stdenv, fetchgit, pkgconfig, autoconf, automake, openssl, libgsf, gmp }:
stdenv.mkDerivation rec {
name = "crackxls-${version}";
version = "0.4";
src = fetchgit {
url = https://github.com/GavinSmith0123/crackxls2003.git;
rev = "refs/tags/v${version}";
sha256 = "0q5jl7hcds3f0rhly3iy4fhhbyh9cdrfaw7zdrazzf1wswwhyssz";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ autoconf automake openssl libgsf gmp ];
installPhase =
''
mkdir -p $out/bin
cp crackxls2003 $out/bin/
'';
meta = with stdenv.lib; {
homepage = https://github.com/GavinSmith0123/crackxls2003/;
description = "Used to break the encryption on old Microsoft Excel and Microsoft Word files";
platforms = platforms.linux;
license = licenses.gpl3;
};
}