summary refs log tree commit diff
path: root/pkgs/os-specific/linux/libsepol/default.nix
blob: 8dcc1e2fb3e7ccec40f49d4c5b8f0d29d526ca45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{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";
  };
}