nixpkgs/pkgs/tools/security/ssss/default.nix
Eelco Dolstra c556a6ea46 * "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointless
function, so obsolete it.

svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
2012-01-18 20:16:00 +00:00

27 lines
640 B
Nix

{ stdenv, fetchurl, gmp }:
stdenv.mkDerivation rec {
name = "ssss-0.5";
src = fetchurl {
url = http://point-at-infinity.org/ssss/ssss-0.5.tar.gz;
sha256 = "15grn2fp1x8p92kxkwbmsx8rz16g93y9grl3hfqbh1jn21ama5jx";
};
buildInputs = [ gmp ];
preBuild =
''
sed -e s@/usr/@$out/@g -i Makefile
cp ssss.manpage.xml ssss.1
cp ssss.manpage.xml ssss.1.html
mkdir -p $out/bin $out/share/man/man1
echo -e 'install:\n\tcp ssss-combine ssss-split '"$out"'/bin' >>Makefile
'';
meta = {
description = "Shamir Secret Sharing Scheme";
homepage = http://point-at-infinity.org/ssss/;
};
}