We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 0886c1b commit 4e32f5bCopy full SHA for 4e32f5b
pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix
@@ -1,4 +1,4 @@
1
-{ lib, stdenv, fetchurl }:
+{ lib, stdenv, fetchurl, ruby }:
2
3
let
4
@@ -10,6 +10,8 @@ let
10
inherit sha256;
11
};
12
13
+ buildInputs = [ ruby ];
14
+
15
dontBuild = true;
16
17
installPhase = ''
@@ -21,6 +23,9 @@ let
21
23
# Backwards compatibility. Will remove eventually.
22
24
mkdir -p $out/xml/xsl
25
ln -s $dst $out/xml/xsl/docbook
26
27
+ ln -sv $dst/epub/bin $out
28
+ chmod +x $out/bin/dbtoepub
29
'';
30
31
meta = {
0 commit comments