c556a6ea46
function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ fetchurl, stdenv, python, gnupg }:
|
|
|
|
let version = "2.0.9"; in
|
|
stdenv.mkDerivation {
|
|
name = "pius-${version}";
|
|
namePrefix = "";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/pgpius/pius/${version}/pius-${version}.tar.bz2";
|
|
sha256 = "1g1jly3wl4ks6h8ydkygyl2c4i7v3z91rg42005m6vm70y1d8b3d";
|
|
};
|
|
|
|
buildInputs = [ python ];
|
|
|
|
patchPhase =
|
|
'' sed -i "pius" -e's|/usr/bin/gpg|${gnupg}/bin/gpg2|g'
|
|
'';
|
|
|
|
buildPhase = "true";
|
|
|
|
installPhase =
|
|
'' mkdir -p "$out/bin"
|
|
cp -v pius "$out/bin"
|
|
|
|
mkdir -p "$out/doc/pius-${version}"
|
|
cp -v README "$out/doc/pius-${version}"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.phildev.net/pius/;
|
|
|
|
description = "PGP Individual UID Signer (PIUS), quickly and easily sign UIDs on a set of PGP keys";
|
|
|
|
longDescription =
|
|
'' This software will allow you to quickly and easily sign each UID on
|
|
a set of PGP keys. It is designed to take the pain out of the
|
|
sign-all-the-keys part of PGP Keysigning Party while adding security
|
|
to the process.
|
|
'';
|
|
|
|
license = "GPLv2";
|
|
|
|
platforms = stdenv.lib.platforms.gnu;
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
};
|
|
}
|