* 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:
@@ -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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user