a7703662a4
svn path=/nixpkgs/branches/stdenv-updates/; revision=10145
15 lines
342 B
Nix
15 lines
342 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "file-4.23";
|
|
src = fetchurl {
|
|
url = ftp://ftp.astron.com/pub/file/file-4.23.tar.gz;
|
|
sha256 = "0iyiyzcs88k6r881l11zrg86ys3rnwjyh1bgx7hnfyjv8zk9db9g";
|
|
};
|
|
|
|
meta = {
|
|
description = "A program that shows the type of files";
|
|
homepage = ftp://ftp.astron.com/pub/file;
|
|
};
|
|
}
|