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

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

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