about summary refs log tree commit diff
path: root/pkgs/tools/typesetting/bibtex-tools
diff options
context:
space:
mode:
authorEelco Visser <visser@acm.org>2004-08-17 11:53:31 +0000
committerEelco Visser <visser@acm.org>2004-08-17 11:53:31 +0000
commit009cda1fb2620f0d1f5de02433c88527161de4b8 (patch)
tree0c0f32316e891b17d3121f14496700f5bcd893d3 /pkgs/tools/typesetting/bibtex-tools
parent92fbc10356fb986e5af378fae30c8bc2cec1fb33 (diff)
downloadnixlib-009cda1fb2620f0d1f5de02433c88527161de4b8.tar
nixlib-009cda1fb2620f0d1f5de02433c88527161de4b8.tar.gz
nixlib-009cda1fb2620f0d1f5de02433c88527161de4b8.tar.bz2
nixlib-009cda1fb2620f0d1f5de02433c88527161de4b8.tar.lz
nixlib-009cda1fb2620f0d1f5de02433c88527161de4b8.tar.xz
nixlib-009cda1fb2620f0d1f5de02433c88527161de4b8.tar.zst
nixlib-009cda1fb2620f0d1f5de02433c88527161de4b8.zip
version 0.1 of bibtex-tools
svn path=/nixpkgs/trunk/; revision=1285
Diffstat (limited to 'pkgs/tools/typesetting/bibtex-tools')
-rw-r--r--pkgs/tools/typesetting/bibtex-tools/builder.sh5
-rw-r--r--pkgs/tools/typesetting/bibtex-tools/default.nix13
2 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/tools/typesetting/bibtex-tools/builder.sh b/pkgs/tools/typesetting/bibtex-tools/builder.sh
new file mode 100644
index 000000000000..de8bbaee28fa
--- /dev/null
+++ b/pkgs/tools/typesetting/bibtex-tools/builder.sh
@@ -0,0 +1,5 @@
+. $stdenv/setup
+
+configureFlags="--with-aterm=$aterm --with-sglr=$sglr --with-pgen=$pgen
+ --with-pt-support=$ptsupport --with-asf-library=$asflibrary --with-strategoxt=$strategoxt --with-hevea=$hevea --with-latex=/usr"
+genericBuild
diff --git a/pkgs/tools/typesetting/bibtex-tools/default.nix b/pkgs/tools/typesetting/bibtex-tools/default.nix
new file mode 100644
index 000000000000..79180c429230
--- /dev/null
+++ b/pkgs/tools/typesetting/bibtex-tools/default.nix
@@ -0,0 +1,13 @@
+{stdenv, fetchurl, hevea, strategoxt, aterm, sdf}: 
+
+stdenv.mkDerivation {
+  name = "bibtex-tools-0.1";
+  builder = ./builder.sh;
+  src = fetchurl {
+    url = http://www.cs.uu.nl/~visser/ftp/bibtex-tools-0.1.tar.gz;
+    md5 = "8e3ce277100af6fceec23f5bed4aa9e8";
+  };
+  inherit aterm hevea strategoxt;
+  inherit (sdf) sglr pgen ptsupport asflibrary;
+  buildInputs = [aterm sdf.pgen strategoxt hevea];
+}