mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
version 0.1 of bibtex-tools
svn path=/nixpkgs/trunk/; revision=1285
This commit is contained in:
parent
92fbc10356
commit
009cda1fb2
@ -315,6 +315,11 @@ rec {
|
||||
sdf = sdf_22;
|
||||
};
|
||||
|
||||
bibtextools = (import ../tools/typesetting/bibtex-tools) {
|
||||
inherit fetchurl stdenv aterm strategoxt hevea;
|
||||
sdf = sdf_22;
|
||||
};
|
||||
|
||||
#strategoxtsvn = (import ../development/compilers/strategoxt/trunk.nix) {
|
||||
# inherit fetchsvn stdenv autoconf automake libtool which aterm;
|
||||
# sdf = sdf_22;
|
||||
|
5
pkgs/tools/typesetting/bibtex-tools/builder.sh
Normal file
5
pkgs/tools/typesetting/bibtex-tools/builder.sh
Normal file
@ -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
|
13
pkgs/tools/typesetting/bibtex-tools/default.nix
Normal file
13
pkgs/tools/typesetting/bibtex-tools/default.nix
Normal file
@ -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];
|
||||
}
|
Loading…
Reference in New Issue
Block a user