4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
1012 B
Nix
35 lines
1012 B
Nix
{ fetchurl, lib, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "paperkey";
|
|
version = "1.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.jabberwocky.com/software/paperkey/${pname}-${version}.tar.gz";
|
|
sha256 = "1xq5gni6gksjkd5avg0zpd73vsr97appksfx0gx2m38s4w9zsid2";
|
|
};
|
|
|
|
postPatch = ''
|
|
for a in checks/*.sh ; do
|
|
substituteInPlace $a \
|
|
--replace /bin/echo echo
|
|
done
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Store OpenPGP or GnuPG on paper";
|
|
longDescription = ''
|
|
A reasonable way to achieve a long term backup of OpenPGP (GnuPG, PGP, etc)
|
|
keys is to print them out on paper. Paper and ink have amazingly long
|
|
retention qualities - far longer than the magnetic or optical means that
|
|
are generally used to back up computer data.
|
|
'';
|
|
homepage = "https://www.jabberwocky.com/software/paperkey/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ skeidel ];
|
|
};
|
|
}
|