Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
849 B
Nix
49 lines
849 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
autoconf,
|
|
automake,
|
|
openssl,
|
|
libgsf,
|
|
gmp,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "crackxls";
|
|
version = "1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GavinSmith0123";
|
|
repo = "crackxls2003";
|
|
tag = "v${version}";
|
|
sha256 = "sha256-CJFC4iKHHpSRQBdotmum7NjpPNUjbB6cSCs5HMXnjO8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
autoconf
|
|
automake
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
libgsf
|
|
gmp
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp crackxls2003 $out/bin/
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/GavinSmith0123/crackxls2003/";
|
|
description = "Used to break the encryption on old Microsoft Excel and Microsoft Word files";
|
|
mainProgram = "crackxls2003";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl3;
|
|
};
|
|
}
|