summary refs log tree commit diff
path: root/pkgs/tools/misc/file/default.nix
blob: b63619bc68ee5c672bf744d8c8da2e76a8e5c1e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl}:
 
stdenv.mkDerivation {
  name = "file-5.03";

  src = fetchurl {
    url = ftp://ftp.astron.com/pub/file/file-5.03.tar.gz;
    sha256 = "1fwmpplwc6h2g89ribq7w8x2np0yn5k7bw042815rv7jkrzv9nhy";
  };

  meta = {
    description = "A program that shows the type of files";
    homepage = ftp://ftp.astron.com/pub/file;
  };
}