nixpkgs/pkgs/os-specific/linux/keyutils/default.nix

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

57 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
# 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.
stdenv.mkDerivation rec {
pname = "keyutils";
2020-09-16 06:49:16 +00:00
version = "1.6.3";
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 06:49:16 +00:00
sha256 = "sha256-ph1XBhNq5MBb1I+GGGvP29iN2L1RB+Phlckkz8Gzm7Q=";
};
2019-02-07 03:00:48 +00:00
patches = [
./conf-symlink.patch
# This patch solves a duplicate symbol error when building with a clang stdenv
# Before removing this patch, please ensure the package still builds by running eg.
# nix-build -E 'with import ./. {}; pkgs.keyutils.override { stdenv = pkgs.llvmPackages_latest.stdenv; }'
./0001-Remove-unused-function-after_eq.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 04:00:00 +00:00
2017-01-31 09:59:34 +00:00
outputs = [ "out" "lib" "dev" ];
2013-11-28 08:01:12 +00:00
postPatch = ''
# https://github.com/archlinux/svntogit-packages/blob/packages/keyutils/trunk/reproducible.patch
substituteInPlace Makefile \
--replace \
'VCPPFLAGS := -DPKGBUILD="\"$(shell date -u +%F)\""' \
'VCPPFLAGS := -DPKGBUILD="\"$(date -ud "@$SOURCE_DATE_EPOCH" +%F)\""'
'';
2020-09-16 06:49:16 +00: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"
];
meta = with lib; {
homepage = "https://people.redhat.com/dhowells/keyutils/";
description = "Tools used to control the Linux kernel key management system";
2014-05-10 05:33:24 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}