mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
36 lines
1016 B
Nix
36 lines
1016 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, bison, flex
|
|
, python, swig2, tcl, libsepol, libselinux, libxml2, sqlite, bzip2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "setools-2015-02-12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TresysTechnology";
|
|
repo = "setools3";
|
|
rev = "f1e5b208d507171968ca4d2eeefd7980f1004a3c";
|
|
sha256 = "02gzy2kpszhr13f0d9qfiwh2hj4201g2x366j53v5n5qz481aykd";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--disable-gui"
|
|
"--with-sepol-devel=${libsepol}"
|
|
"--with-selinux-devel=${libselinux}"
|
|
"--with-tcl=${tcl}/lib"
|
|
];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
NIX_CFLAGS_COMPILE = "-fstack-protector-all";
|
|
NIX_LDFLAGS = "-L${libsepol}/lib -L${libselinux}/lib";
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig python swig2 bison flex ];
|
|
buildInputs = [ tcl libxml2 sqlite bzip2 ];
|
|
|
|
meta = {
|
|
description = "SELinux Tools";
|
|
homepage = http://oss.tresys.com/projects/setools/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|