nixpkgs/pkgs/os-specific/linux/libsepol/default.nix
Vladimír Čunát 16af7480d0
libsepol: fixup build with gcc-7
... by ignoring a newly detected warning.
2017-11-12 09:39:50 +01:00

32 lines
825 B
Nix

{ stdenv, fetchurl, flex }:
stdenv.mkDerivation rec {
name = "libsepol-${version}";
version = "2.4";
se_release = "20150202";
se_url = "https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases";
src = fetchurl {
url = "${se_url}/${se_release}/libsepol-${version}.tar.gz";
sha256 = "0ncnwhpc1gx4hrrb822fqkwy5h75zzngsrfkd5mlqh1jk7aib419";
};
nativeBuildInputs = [ flex ];
preBuild = ''
makeFlagsArray+=("PREFIX=$out")
makeFlagsArray+=("DESTDIR=$out")
'';
NIX_CFLAGS_COMPILE = [ "-Wno-error=implicit-fallthrough" ];
passthru = { inherit se_release se_url; };
meta = with stdenv.lib; {
homepage = http://userspace.selinuxproject.org;
platforms = platforms.linux;
maintainers = [ maintainers.phreedom ];
license = stdenv.lib.licenses.gpl2;
};
}