nixpkgs/pkgs/os-specific/linux/ima-evm-utils/default.nix

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

26 lines
870 B
Nix
Raw Normal View History

{ lib, stdenv, fetchgit, autoreconfHook, pkg-config, openssl, attr, keyutils, asciidoc, libxslt, docbook_xsl }:
2015-08-04 00:10:13 +01:00
stdenv.mkDerivation rec {
pname = "ima-evm-utils";
2021-12-15 18:38:57 +00:00
version = "1.4";
2015-08-04 00:10:13 +01:00
src = fetchgit {
url = "git://git.code.sf.net/p/linux-ima/ima-evm-utils";
2019-03-10 20:12:58 +00:00
rev = "v${version}";
2021-12-15 18:38:57 +00:00
sha256 = "1zmyv82232lzqk52m0s7fap9zb9hb1x6nsi5gznk0cbsnq2m67pc";
2015-08-04 00:10:13 +01:00
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ openssl attr keyutils asciidoc libxslt ];
2015-08-04 00:10:13 +01:00
2021-12-15 18:38:57 +00:00
MANPAGE_DOCBOOK_XSL = "${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl";
2015-08-04 00:10:13 +01:00
meta = {
description = "evmctl utility to manage digital signatures of the Linux kernel integrity subsystem (IMA/EVM)";
homepage = "https://sourceforge.net/projects/linux-ima/";
2021-01-15 14:45:37 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ ];
2015-08-04 00:10:13 +01:00
};
}