mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
9 lines
210 B
Nix
9 lines
210 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "coreutils-5.93";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/coreutils-5.93.tar.bz2;
|
|
md5 = "955d8abfd3dd8af2ca3af51480f1f9af";
|
|
};
|
|
}
|