forked from mirrors/nixpkgs
pkgs/applications/misc/ikiwiki: renamed package from ikiwiki_3.20100427 to ikiwiki-3.20100427 to make it conform with Nix conventions
svn path=/nixpkgs/trunk/; revision=21418
This commit is contained in:
parent
411b6600ba
commit
a20694d004
|
@ -6,11 +6,15 @@
|
|||
, extraUtils ? []
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ikiwiki_3.20100427";
|
||||
let
|
||||
name = "ikiwiki";
|
||||
version = "3.20100427";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "${name}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.de.debian.org/debian/pool/main/i/ikiwiki/${name}.tar.gz";
|
||||
url = "http://ftp.de.debian.org/debian/pool/main/i/ikiwiki/${name}_${version}.tar.gz";
|
||||
sha256 = "b00567628657c52ed5a5388e47af370b0f2cdfa82d3eaf1b0020f0e07d218b8f";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue