2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2010-01-25 11:34:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-01-31 10:59:34 +01:00
|
|
|
name = "keyutils-${version}";
|
2018-11-19 14:31:59 +01:00
|
|
|
version = "1.6";
|
2014-06-19 06:19:00 +02:00
|
|
|
|
2010-01-25 11:34:47 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://people.redhat.com/dhowells/keyutils/${name}.tar.bz2";
|
2018-11-19 14:31:59 +01:00
|
|
|
sha256 = "05bi5ja6f3h3kdi7p9dihlqlfrsmi1wh1r2bdgxc0180xh6g5bnk";
|
2010-01-25 11:34:47 +01:00
|
|
|
};
|
|
|
|
|
2019-02-07 04:00:48 +01:00
|
|
|
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";
|
2017-01-31 10:59:34 +01:00
|
|
|
outputs = [ "out" "lib" "dev" ];
|
2013-11-28 09:01:12 +01:00
|
|
|
|
2017-01-31 10:59:34 +01:00
|
|
|
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"
|
|
|
|
];
|
2014-06-19 06:19:00 +02:00
|
|
|
|
2014-05-10 07:33:24 +02:00
|
|
|
meta = with stdenv.lib; {
|
2018-11-24 23:56:37 +01:00
|
|
|
homepage = https://people.redhat.com/dhowells/keyutils/;
|
2010-01-25 11:34:47 +01:00
|
|
|
description = "Tools used to control the Linux kernel key management system";
|
2014-05-10 07:33:24 +02:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2010-01-25 11:34:47 +01:00
|
|
|
};
|
|
|
|
}
|