Typo in path, style

svn path=/nixpkgs/trunk/; revision=21077
This commit is contained in:
Yury G. Kudryashov
2010-04-14 19:27:04 +00:00
parent 99e825a42c
commit 1336665f0d
2 changed files with 9 additions and 6 deletions
@@ -0,0 +1,18 @@
{stdenv, fetchurl, cups}:
stdenv.mkDerivation rec {
name = "cups-bjnp-0.5.4";
src = fetchurl {
url = "mirror://sourceforge/cups-bjnp/${name}.tar.gz";
sha256 = "1q5npis0jgs44yvczrr6pz87glk1d9lv3vr2s4nqrk3l0q4xplf6";
};
preConfigure = ''configureFlags="--with-cupsbackenddir=$out/lib/cups/backend"'';
buildInputs = [cups];
meta = {
homepage = http://cups-bjnp.sourceforge.net;
};
}