nixpkgs/pkgs/os-specific/linux/pax-utils/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, bash, gitUpdater }:
stdenv.mkDerivation rec {
2019-07-09 13:17:19 +00:00
pname = "pax-utils";
version = "1.3.4";
src = fetchurl {
url = "mirror://gentoo/distfiles/${pname}-${version}.tar.xz";
sha256 = "sha256-i67S+cWujgzaG5x1mQhkEBr8ZPrQpGFuEPP/jviRBAs=";
};
2021-10-30 10:31:23 +00:00
strictDeps = true;
buildInputs = [ bash ];
makeFlags = [ "PREFIX=$(out)" ];
passthru.updateScript = gitUpdater {
inherit pname version;
url = "https://anongit.gentoo.org/git/proj/pax-utils.git";
rev-prefix = "v";
};
2019-07-09 13:17:19 +00:00
meta = with lib; {
description = "ELF utils that can check files for security relevant properties";
longDescription = ''
A suite of ELF tools to aid auditing systems. Contains
various ELF related utils for ELF32, ELF64 binaries useful
for displaying PaX and security info on a large groups of
binary files.
'';
2019-07-09 13:17:19 +00:00
homepage = "https://wiki.gentoo.org/wiki/Hardened/PaX_Utilities";
2021-09-05 09:13:58 +00:00
license = licenses.gpl2Only;
platforms = platforms.unix;
2016-11-20 21:28:46 +00:00
maintainers = with maintainers; [ thoughtpolice joachifm ];
};
}