3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #56163 from hlolli/csound-manual

csound-manual: init at 6.12.0
This commit is contained in:
Ryan Mulligan 2019-02-22 21:13:06 -08:00 committed by GitHub
commit 3917bb8f5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,44 @@
{
stdenv, fetchurl, docbook_xsl,
docbook_xml_dtd_45, python, pygments,
libxslt
}:
stdenv.mkDerivation rec {
version = "6.12.0";
name = "csound-manual-${version}";
src = fetchurl {
url = "https://github.com/csound/manual/archive/${version}.tar.gz";
sha256 = "1v1scp468rnfbcajnp020kdj8zigimc2mbcwzxxqi8sf8paccdrp";
};
prePatch = ''
substituteInPlace manual.xml \
--replace "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" \
"${docbook_xml_dtd_45}/xml/dtd/docbook/docbookx.dtd"
'';
nativeBuildInputs = [ libxslt.bin ];
buildInputs = [ docbook_xsl python pygments ];
buildPhase = ''
make XSL_BASE_PATH=${docbook_xsl}/share/xml/docbook-xsl html-dist
'';
installPhase = ''
mkdir -p $out/share/doc/csound
cp -r ./html $out/share/doc/csound
'';
meta = {
description = "The Csound Canonical Reference Manual";
homepage = "https://github.com/csound/manual";
license = stdenv.lib.licenses.fdl12Plus;
maintainers = [ stdenv.lib.maintainers.hlolli ];
platforms = stdenv.lib.platforms.all;
};
}

View file

@ -16455,6 +16455,11 @@ in
fluidsynth = fluidsynth_1;
};
csound-manual = callPackage ../applications/audio/csound/csound-manual {
python = python27;
pygments = python27Packages.pygments;
};
csound-qt = callPackage ../applications/audio/csound/csound-qt {
python = python27;
qmake = qt59.qmake;