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

32 lines
797 B
Nix
Raw Normal View History

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