* Clean up the "dict" package. For some reason "configureFlags"

didn't get passed properly.

svn path=/nixpkgs/trunk/; revision=21069
This commit is contained in:
Eelco Dolstra
2010-04-14 10:55:50 +00:00
parent 0cf1045be4
commit 98bab41c33
4 changed files with 20 additions and 29 deletions
+18
View File
@@ -0,0 +1,18 @@
{ stdenv, fetchurl, which, bison, flex }:
stdenv.mkDerivation {
name = "dictd-1.9.15";
src = fetchurl {
url = mirror://sourceforge/dict/dictd-1.9.15.tar.gz;
sha256 = "0p41yf72l0igmshz6vxy3hm51z25600vrnb9j2jpgws4c03fqnac";
};
buildInputs = [ flex bison which ];
configureFlags = "--datadir=/var/run/current-system/share/dictd";
meta = {
description = "Dict protocol server and client";
};
}