mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
89ba1cba24
svn path=/nixpkgs/trunk/; revision=7159
14 lines
334 B
Nix
14 lines
334 B
Nix
{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";
|
|
|
|
postInstall = "rm $out/bin/groups"; # coreutils provides `groups'
|
|
}
|