libseccomp: Update to 2.2.1
This commit is contained in:
parent
1e686d8892
commit
8ab3f88f5c
@ -1,17 +1,16 @@
|
|||||||
{ stdenv, fetchFromGitHub, autoreconfHook, getopt }:
|
{ stdenv, fetchurl, getopt }:
|
||||||
|
|
||||||
|
let version = "2.2.1"; in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libseccomp-${version}";
|
name = "libseccomp-${version}";
|
||||||
version = "2.2.0";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchurl {
|
||||||
owner = "seccomp";
|
url = "https://github.com/seccomp/libseccomp/releases/download/v${version}/libseccomp-${version}.tar.gz";
|
||||||
repo = "libseccomp";
|
sha256 = "0h57a4l5v1aqyqrkj5gfnar8n2nxs2gzrpscym568v3qajgpi88b";
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "0vfd6hx92cp1jaqxxaj30r92bfm6fmamxi2yqxrl82mqism1lk84";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ autoreconfHook getopt ];
|
buildInputs = [ getopt ];
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
patchShebangs .
|
patchShebangs .
|
||||||
|
Loading…
Reference in New Issue
Block a user