tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ima-evm-utils: init at 1.0.0
Thomas Strobel
10 years ago
c31dc22a
c6159b26
+26
2 changed files
expand all
collapse all
unified
split
pkgs
os-specific
linux
ima-evm-utils
default.nix
top-level
all-packages.nix
+24
pkgs/os-specific/linux/ima-evm-utils/default.nix
···
1
1
+
{ stdenv, fetchgit, autoreconfHook, pkgconfig, openssl, attr, keyutils, asciidoc, libxslt, docbook_xsl }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "ima-evm-utils-${version}";
5
5
+
version = "1.0.0";
6
6
+
7
7
+
src = fetchgit {
8
8
+
url = "git://git.code.sf.net/p/linux-ima/ima-evm-utils";
9
9
+
rev = "4b56112c095cb5cc34dc35abac37ebfc6eadba65";
10
10
+
sha256 = "6f1ef4e84b9214448ea4a530a562a20ad1ba5a7cfefd7ddda90a56e2404f3a87";
11
11
+
};
12
12
+
13
13
+
buildInputs = [ autoreconfHook pkgconfig openssl attr keyutils asciidoc libxslt ];
14
14
+
15
15
+
buildPhase = "make prefix=$out MANPAGE_DOCBOOK_XSL=${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl";
16
16
+
17
17
+
meta = {
18
18
+
description = "evmctl utility to manage digital signatures of the Linux kernel integrity subsystem (IMA/EVM)";
19
19
+
homepage = "http://sourceforge.net/projects/linux-ima/";
20
20
+
license = stdenv.lib.licenses.gpl2;
21
21
+
platforms = stdenv.lib.platforms.linux;
22
22
+
maintainers = with stdenv.lib.maintainers; [ tstrobel ];
23
23
+
};
24
24
+
}
+2
pkgs/top-level/all-packages.nix
···
9587
9587
9588
9588
ifplugd = callPackage ../os-specific/linux/ifplugd { };
9589
9589
9590
9590
+
ima-evm-utils = callPackage ../os-specific/linux/ima-evm-utils { };
9591
9591
+
9590
9592
iomelt = callPackage ../os-specific/linux/iomelt { };
9591
9593
9592
9594
iotop = callPackage ../os-specific/linux/iotop { };