nixpkgs/pkgs/tools/security/mpw/default.nix

51 lines
1.3 KiB
Nix
Raw Normal View History

2016-10-30 11:15:26 +00:00
{ stdenv, fetchzip, autoconf, automake, openssl, libxml2, fetchFromGitHub, ncurses }:
2015-09-30 00:56:32 +00:00
let
2016-10-30 11:15:26 +00:00
scrypt_src = fetchzip {
url = "http://www.tarsnap.com/scrypt/scrypt-1.2.0.tgz";
sha256 = "0ahylib2pimlhjcm566kpim6n16jci5v749xwdkr9ivgfjrv3xn4";
2015-09-30 00:56:32 +00:00
};
in stdenv.mkDerivation {
2016-10-30 11:15:26 +00:00
name = "mpw-2.1-6834f36";
2015-09-30 00:56:32 +00:00
2016-10-30 11:15:26 +00:00
src = fetchFromGitHub {
owner = "Lyndir";
repo = "MasterPassword";
rev = "6834f3689f5dfd4e59ad6959961d349c224977ee";
sha256 = "0zlpx3hb1y2l60hg961h05lb9yf3xb5phnyycvazah2674gkwb2p";
};
2015-09-30 00:56:32 +00:00
postUnpack = ''
2016-10-30 11:15:26 +00:00
sourceRoot+=/MasterPassword/C
2015-09-30 00:56:32 +00:00
'';
prePatch = ''
patchShebangs .
2016-10-30 11:15:26 +00:00
mkdir lib/scrypt/src
cp -R --no-preserve=ownership ${scrypt_src}/* lib/scrypt/src
chmod +w -R lib/scrypt/src
substituteInPlace lib/scrypt/src/libcperciva/cpusupport/Build/cpusupport.sh \
--replace dirname "$(type -P dirname)"
substituteInPlace lib/scrypt/src/Makefile.in --replace "command -p mv" "mv"
2015-09-30 00:56:32 +00:00
'';
NIX_CFLAGS_COMPILE = "-I${libxml2.dev}/include/libxml2";
2015-09-30 00:56:32 +00:00
2016-10-30 11:15:26 +00:00
buildInputs = [ autoconf automake openssl libxml2 ncurses ];
2015-09-30 00:56:32 +00:00
buildPhase = ''
2016-10-30 11:15:26 +00:00
substituteInPlace build --replace '"curses"' '"ncurses"'
2015-09-30 00:56:32 +00:00
targets="mpw mpw-tests" ./build
'';
installPhase = ''
mkdir -p $out/bin
mv mpw $out/bin/mpw
'';
meta = {
platforms = stdenv.lib.platforms.unix;
};
2015-09-30 00:56:32 +00:00
}