* Added cksfv, a program for verifying sfv checksum files.

svn path=/nixpkgs/trunk/; revision=720
This commit is contained in:
Eelco Dolstra
2004-01-25 08:59:20 +00:00
parent 91184df3b2
commit 9db5df37f9
4 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#! /bin/sh
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd cksfv-*/src || exit 1
make || exit 1
mkdir $out || exit 1
mkdir $out/bin || exit 1
install cksfv $out/bin || exit 1

View File

@@ -0,0 +1,12 @@
{stdenv, fetchurl}:
derivation {
name = "cksfv-1.3";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://www.fodder.org/cksfv/cksfv-1.3.tar.gz;
md5 = "e00cf6a80a566539eb6f3432f2282c38";
};
stdenv = stdenv;
}