2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2010-01-25 10:34:47 +00:00
|
|
|
|
2020-06-26 21:44:45 +01:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2010-01-25 10:34:47 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "keyutils";
|
2020-09-16 07:49:16 +01:00
|
|
|
version = "1.6.3";
|
2014-06-19 05:19:00 +01:00
|
|
|
|
2010-01-25 10:34:47 +00:00
|
|
|
src = fetchurl {
|
2019-11-20 16:24:21 +00:00
|
|
|
url = "https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/snapshot/${pname}-${version}.tar.gz";
|
2020-09-16 07:49:16 +01:00
|
|
|
sha256 = "sha256-ph1XBhNq5MBb1I+GGGvP29iN2L1RB+Phlckkz8Gzm7Q=";
|
2010-01-25 10:34:47 +00:00
|
|
|
};
|
|
|
|
|
2019-02-07 03:00:48 +00:00
|
|
|
patches = [
|
|
|
|
(fetchurl {
|
|
|
|
# improve reproducibility
|
|
|
|
url = "https://salsa.debian.org/debian/keyutils/raw/4cecffcb8e2a2aa4ef41777ed40e4e4bcfb2e5bf/debian/patches/Make-build-reproducible.patch";
|
|
|
|
sha256 = "0wnvbjfrbk7rghd032z684l7vk7mhy3bd41zvhkrhgp3cd5id0bm";
|
|
|
|
})
|
2019-11-27 21:00:10 +00:00
|
|
|
./conf-symlink.patch
|
2019-02-07 03:00:48 +00:00
|
|
|
];
|
|
|
|
|
2021-01-15 14:45:37 +00:00
|
|
|
makeFlags = lib.optionals stdenv.hostPlatform.isStatic "NO_SOLIB=1";
|
2020-10-17 05:00:00 +01:00
|
|
|
|
2019-02-07 03:00:48 +00:00
|
|
|
BUILDDATE = "1970-01-01";
|
2017-01-31 09:59:34 +00:00
|
|
|
outputs = [ "out" "lib" "dev" ];
|
2013-11-28 08:01:12 +00:00
|
|
|
|
2020-09-16 07:49:16 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-01-31 09:59:34 +00: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 05:19:00 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://people.redhat.com/dhowells/keyutils/";
|
2010-01-25 10:34:47 +00:00
|
|
|
description = "Tools used to control the Linux kernel key management system";
|
2014-05-10 06:33:24 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2010-01-25 10:34:47 +00:00
|
|
|
};
|
|
|
|
}
|