Skip to content

Commit 9573f33

Browse files
committed
pkgs/latex2rtf: init
Old piece of software, wanted to use to test something funny. Preserving it here for the future, or for some nix soul seeking a hug.
1 parent 6e3ea6b commit 9573f33

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

pkgs/latex2rtf.nix

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
fetchFromGitHub,
3+
stdenv,
4+
texlive,
5+
texinfo,
6+
man,
7+
util-linux,
8+
}:
9+
stdenv.mkDerivation {
10+
pname = "latex2rtf";
11+
version = "unstable";
12+
13+
src = fetchFromGitHub {
14+
owner = "latex2rtf";
15+
repo = "latex2rtf";
16+
rev = "f06be5983ee07293a994fc9c161564d0921230c5";
17+
hash = "sha256-q0TZoS79AiH0ebouDyWKYM/okAXHPpuz6zGobesMa2w=";
18+
};
19+
20+
env.PREFIX = builtins.placeholder "out";
21+
22+
nativeBuildInputs = [
23+
(texlive.combine {inherit (texlive) scheme-minimal texinfo;})
24+
texinfo
25+
man
26+
util-linux
27+
];
28+
}

0 commit comments

Comments
 (0)