nixpkgs/pkgs/development/libraries/libseccomp/default.nix

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

54 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, getopt, util-linux, gperf, nix-update-script }:
stdenv.mkDerivation rec {
pname = "libseccomp";
version = "2.5.3";
2015-05-22 14:49:27 +01:00
src = fetchurl {
url = "https://github.com/seccomp/libseccomp/releases/download/v${version}/libseccomp-${version}.tar.gz";
sha256 = "sha256-WQZchzM2RyXpchukjDqZu8Uq+SHa9I30seAS+8exCnY=";
};
outputs = [ "out" "lib" "dev" "man" "pythonsrc" ];
2018-02-22 14:15:55 +00:00
nativeBuildInputs = [ gperf ];
buildInputs = [ getopt ];
2015-03-27 00:54:08 +00:00
patchPhase = ''
2015-03-27 00:54:08 +00:00
patchShebangs .
'';
2020-11-24 15:29:28 +00:00
checkInputs = [ util-linux ];
doCheck = false; # dependency cycle
# Hack to ensure that patchelf --shrink-rpath get rids of a $TMPDIR reference.
preFixup = "rm -rfv src";
# Copy the python module code into a tarball that we can export and use as the
# src input for buildPythonPackage calls
postInstall = ''
cp -R ./src/python/ tmp-pythonsrc/
tar -zcf $pythonsrc --mtime="@$SOURCE_DATE_EPOCH" --sort=name --transform s/tmp-pythonsrc/python-foundationdb/ ./tmp-pythonsrc/
'';
passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
};
meta = with lib; {
description = "High level library for the Linux Kernel seccomp filter";
homepage = "https://github.com/seccomp/libseccomp";
2021-09-03 10:33:14 +01:00
license = licenses.lgpl21Only;
platforms = platforms.linux;
badPlatforms = [
"alpha-linux"
"riscv32-linux"
"sparc-linux"
"sparc64-linux"
];
maintainers = with maintainers; [ thoughtpolice ];
};
}