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

  src = fetchurl {
    urls = [
      ftp://ftp.astron.com/pub/file/file-5.04.tar.gz
      http://pkgs.fedoraproject.org/repo/pkgs/file/file-5.04.tar.gz/accade81ff1cc774904b47c72c8aeea0/file-5.04.tar.gz
    ];
    sha256 = "0316lj3jxmp2g8azv0iykmmwjsnjanq93bklccwb6k77jiwnx7jc";
  };

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