forked from mirrors/nixpkgs
docbook5: 5.0 -> 5.0.1
Main reason: the previous source would not unpack with patched unzip: https://github.com/NixOS/nixpkgs/commit/0238946872c1
This commit is contained in:
parent
ecfb397e8a
commit
5e9f1bb343
|
@ -1,11 +1,12 @@
|
||||||
{ lib, stdenv, fetchurl, unzip }:
|
{ lib, stdenv, fetchurl, unzip }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "docbook5-5.0";
|
pname = "docbook5";
|
||||||
|
version = "5.0.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://www.docbook.org/xml/5.0/docbook-5.0.zip;
|
url = "http://www.docbook.org/xml/${version}/docbook-${version}.zip";
|
||||||
sha256 = "13i04dkd709f0p5f2413sf2y9321pfi4y85ynf8wih6ryphnbk9x";
|
sha256 = "1iz3hq1lqgnshvlz4j9gvh4jy1ml74qf90vqf2ikbq0h4i2xzybs";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ unzip ];
|
nativeBuildInputs = [ unzip ];
|
||||||
|
|
Loading…
Reference in a new issue