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

View file

@ -1,9 +1,10 @@
args: with args;
stdenv.mkDerivation {
name = "cups-bjnp";
{stdenv, fetchurl, cups}:
stdenv.mkDerivation rec {
name = "cups-bjnp-0.5.4";
src = fetchurl {
url = mirror://sourceforge/project/cups-bjnp/cups-bjnp/0.5.4/cups-bjnp-0.5.4.tar.gz;
url = "mirror://sourceforge/cups-bjnp/${name}.tar.gz";
sha256 = "1q5npis0jgs44yvczrr6pz87glk1d9lv3vr2s4nqrk3l0q4xplf6";
};
@ -11,5 +12,7 @@ stdenv.mkDerivation {
buildInputs = [cups];
meta = { };
meta = {
homepage = http://cups-bjnp.sourceforge.net;
};
}

View file

@ -8958,7 +8958,7 @@ let
inherit fetchurl stdenv rpm cpio zlib;
};
cupsBjnp = import ../misc/cups/drivers/cups-bnjp {
cupsBjnp = import ../misc/cups/drivers/cups-bjnp {
inherit fetchurl stdenv cups;
};