Merge pull request #224103 from xworld21/blahtexml-1.0
This commit is contained in:
commit
d844391b9b
1 changed files with 5 additions and 5 deletions
|
@ -1,19 +1,19 @@
|
||||||
{ fetchFromGitHub, lib, stdenv, libiconv, texlive, xercesc }:
|
{ fetchFromGitHub, lib, stdenv, libiconv, texlive, xercesc }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
pname = "blahtexml";
|
pname = "blahtexml";
|
||||||
version = "0.9+date=2020-05-16";
|
version = "1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "gvanas";
|
owner = "gvanas";
|
||||||
repo = "blahtexml";
|
repo = "blahtexml";
|
||||||
rev = "92f2c5ff1f2b00a541b2222facc51ec72e5f6559";
|
rev = "v${version}";
|
||||||
hash = "sha256-ts+2gWsp7+rQu1US2/qEdbttB2Ps12efTSrcioZYsmE=";
|
hash = "sha256-DL5DyfARHHbwWBVHSa/VwHzNaAx/v7EDdnw1GLOk+y0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "doc" ];
|
outputs = [ "out" "doc" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ texlive.combined.scheme-full ];
|
nativeBuildInputs = [ texlive.combined.scheme-full ]; # scheme-full needed for ucs package
|
||||||
buildInputs = [ xercesc ] ++ lib.optionals stdenv.isDarwin [ libiconv ];
|
buildInputs = [ xercesc ] ++ lib.optionals stdenv.isDarwin [ libiconv ];
|
||||||
|
|
||||||
buildFlags =
|
buildFlags =
|
||||||
|
|
Loading…
Reference in a new issue