41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "keyutils-${version}";
|
|
version = "1.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://people.redhat.com/dhowells/keyutils/${name}.tar.bz2";
|
|
sha256 = "05bi5ja6f3h3kdi7p9dihlqlfrsmi1wh1r2bdgxc0180xh6g5bnk";
|
|
};
|
|
|
|
patches = [
|
|
(fetchurl {
|
|
# improve reproducibility
|
|
url = "https://salsa.debian.org/debian/keyutils/raw/4cecffcb8e2a2aa4ef41777ed40e4e4bcfb2e5bf/debian/patches/Make-build-reproducible.patch";
|
|
sha256 = "0wnvbjfrbk7rghd032z684l7vk7mhy3bd41zvhkrhgp3cd5id0bm";
|
|
})
|
|
];
|
|
|
|
BUILDDATE = "1970-01-01";
|
|
outputs = [ "out" "lib" "dev" ];
|
|
|
|
installFlags = [
|
|
"ETCDIR=$(out)/etc"
|
|
"BINDIR=$(out)/bin"
|
|
"SBINDIR=$(out)/sbin"
|
|
"SHAREDIR=$(out)/share/keyutils"
|
|
"MANDIR=$(out)/share/man"
|
|
"INCLUDEDIR=$(dev)/include"
|
|
"LIBDIR=$(lib)/lib"
|
|
"USRLIBDIR=$(lib)/lib"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://people.redhat.com/dhowells/keyutils/;
|
|
description = "Tools used to control the Linux kernel key management system";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|