2020-11-01 23:39:49 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, autoconf, automake, openssl, libgsf, gmp }:
|
2015-06-01 16:15:19 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "crackxls";
|
2015-06-02 13:21:53 +02:00
|
|
|
version = "0.4";
|
2015-06-01 16:15:19 +02:00
|
|
|
|
2020-11-01 23:39:49 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "GavinSmith0123";
|
|
|
|
repo = "crackxls2003";
|
|
|
|
rev = "v${version}";
|
2015-06-01 16:15:19 +02:00
|
|
|
sha256 = "0q5jl7hcds3f0rhly3iy4fhhbyh9cdrfaw7zdrazzf1wswwhyssz";
|
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ autoconf automake openssl libgsf gmp ];
|
2015-06-01 16:15:19 +02:00
|
|
|
|
|
|
|
installPhase =
|
|
|
|
''
|
2015-07-02 00:17:58 +02:00
|
|
|
mkdir -p $out/bin
|
2015-06-01 16:15:19 +02:00
|
|
|
cp crackxls2003 $out/bin/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/GavinSmith0123/crackxls2003/";
|
2015-06-01 16:15:19 +02:00
|
|
|
description = "Used to break the encryption on old Microsoft Excel and Microsoft Word files";
|
2015-06-01 16:59:09 +02:00
|
|
|
platforms = platforms.linux;
|
2015-06-01 16:15:19 +02:00
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|