summary refs log tree commit diff
path: root/pkgs/os-specific/linux/shadow/default.nix
blob: 303d95d3230e7bf28e9c62945a753ebeb9efeddd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl}:
   
stdenv.mkDerivation {
  name = "shadow-4.0.16";
   
  src = fetchurl {
    url = http://losser.labs.cs.uu.nl/~armijn/.nix/shadow-4.0.16.tar.bz2;
    md5 = "1d91f7479143d1d705b94180c0d4874b";
  };
  configureFlags = "--with-selinux=no";
}