nixpkgs/pkgs/os-specific/linux/keyutils/default.nix
R. RyanTM 9c258ce2d3 keyutils: 1.5.10 -> 1.6
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/keyutils/versions
2018-11-19 05:31:59 -08:00

32 lines
796 B
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";
};
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 = http://people.redhat.com/dhowells/keyutils/;
description = "Tools used to control the Linux kernel key management system";
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}