uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
29
pkgs/tools/security/pgpdump/default.nix
Normal file
29
pkgs/tools/security/pgpdump/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ lib, stdenv, fetchFromGitHub
|
||||
, supportCompressedPackets ? true, zlib, bzip2
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pgpdump";
|
||||
version = "0.35";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kazu-yamamoto";
|
||||
repo = "pgpdump";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-GjPy/feF437WtDqbEn1lGwWayWtvKhqsyJFMuH3IFl4=";
|
||||
};
|
||||
|
||||
buildInputs = lib.optionals supportCompressedPackets [ zlib bzip2 ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A PGP packet visualizer";
|
||||
longDescription = ''
|
||||
pgpdump is a PGP packet visualizer which displays the packet format of
|
||||
OpenPGP (RFC 4880) and PGP version 2 (RFC 1991).
|
||||
'';
|
||||
homepage = "http://www.mew.org/~kazu/proj/pgpdump/en/";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ primeos ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue