summary refs log tree commit diff
path: root/pkgs/tools/networking/cksfv/default.nix
blob: 2bf553f95deb91e2f981a9107a859571a02f30c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "cksfv-1.3.13";
  
  src = fetchurl {
    url = http://zakalwe.fi/~shd/foss/cksfv/files/cksfv-1.3.13.tar.bz2;
    sha256 = "0d8lipfdwcs31qql3qhqvgd2c6jhdlfnhdsyw84kka781ay1pvhn";
  };

  meta = {
    homepage = http://zakalwe.fi/~shd/foss/cksfv/;
    description = "A tool for verifying files against a SFV checksum file";
  };
}