nixpkgs/pkgs/tools/networking/cksfv/default.nix
Eelco Dolstra 0a11c62147 * Updated cksfv to a version that does compile on GCC 4.3.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14102
2009-02-17 15:45:51 +00:00

16 lines
382 B
Nix

{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";
};
}