nixpkgs/pkgs/os-specific/linux/libsepol/default.nix

11 lines
230 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
builder = ./builder.sh;
name = "libsepol-1.12";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/libsepol-1.12.tgz;
md5 = "937885f1fcbfe597a0f02aa9af044710";
};
}