mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Upgraded all SDF packages
svn path=/nixpkgs/trunk/; revision=1018
This commit is contained in:
parent
100e0387e5
commit
172421635c
@ -1,14 +1,12 @@
|
||||
{stdenv, fetchurl, aterm, toolbuslib, ptsupport, asfsupport}: derivation {
|
||||
{stdenv, fetchurl, aterm, toolbuslib, ptsupport, asfsupport}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "asc-support-1.8";
|
||||
system = stdenv.system;
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://www.cwi.nl/projects/MetaEnv/asc-support/asc-support-1.8.tar.gz;
|
||||
md5 = "e85a790c6004dfb974d79fc9699f69f4";
|
||||
};
|
||||
stdenv = stdenv;
|
||||
aterm = aterm;
|
||||
ptsupport = ptsupport;
|
||||
toolbuslib = toolbuslib;
|
||||
asfsupport = asfsupport;
|
||||
inherit stdenv aterm ptsupport toolbuslib asfsupport;
|
||||
buildInputs = [stdenv aterm ptsupport toolbuslib asfsupport];
|
||||
}
|
||||
|
@ -1,7 +1,3 @@
|
||||
buildinputs="$aterm $ptsupport $toolbuslib $asfsupport"
|
||||
. $stdenv/setup || exit 1
|
||||
|
||||
tar zxf $src || exit 1
|
||||
cd asc-support-* || exit 1
|
||||
./configure --prefix=$out --with-aterm=$aterm --with-toolbuslib=$toolbuslib --with-pt-support=$ptsupport --with-asf-support=$asfsupport || exit 1
|
||||
make install || exit 1
|
||||
. $stdenv/setup
|
||||
configureFlags="--with-aterm=$aterm --with-toolbuslib=$toolbuslib --with-pt-support=$ptsupport --with-asf-support=$asfsupport"
|
||||
genericBuild
|
@ -1,12 +1,12 @@
|
||||
{stdenv, fetchurl, aterm, ptsupport}: derivation {
|
||||
{stdenv, fetchurl, aterm, ptsupport}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "asf-support-1.2";
|
||||
system = stdenv.system;
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://www.cwi.nl/projects/MetaEnv/asf-support/asf-support-1.2.tar.gz;
|
||||
md5 = "f32de4c97e62486b67e0af4408585980";
|
||||
};
|
||||
stdenv = stdenv;
|
||||
aterm = aterm;
|
||||
ptsupport = ptsupport;
|
||||
inherit stdenv aterm ptsupport;
|
||||
buildInputs = [stdenv aterm ptsupport];
|
||||
}
|
||||
|
@ -1,7 +1,5 @@
|
||||
buildinputs="$aterm $ptsupport"
|
||||
. $stdenv/setup || exit 1
|
||||
. $stdenv/setup
|
||||
configureFlags="--with-aterm=$aterm --with-pt-support=$ptsupport"
|
||||
genericBuild
|
||||
|
||||
|
||||
tar zxf $src || exit 1
|
||||
cd asf-support-* || exit 1
|
||||
./configure --prefix=$out --with-aterm=$aterm --with-pt-support=$ptsupport || exit 1
|
||||
make install || exit 1
|
||||
|
@ -1,16 +1,12 @@
|
||||
buildinputs="$aterm $getopt $toolbuslib $ptsupport $sdfsupport $asfsupport $ascsupport $sglr"
|
||||
. $stdenv/setup
|
||||
|
||||
tar zxf $src
|
||||
cd pgen-*
|
||||
./configure --prefix=$out --with-aterm=$aterm \
|
||||
configureFlags="--with-aterm=$aterm \
|
||||
--with-toolbuslib=$toolbuslib \
|
||||
--with-pt-support=$ptsupport \
|
||||
--with-sdf-support=$sdfsupport \
|
||||
--with-asf-support=$asfsupport \
|
||||
--with-asc-support=$asfsupport \
|
||||
--with-sglr=$sglr
|
||||
make install
|
||||
--with-sglr=$sglr"
|
||||
genericBuild
|
||||
|
||||
mkdir $out/nix-support
|
||||
echo "$getopt" > $out/nix-support/propagated-build-inputs
|
||||
|
@ -1,18 +1,12 @@
|
||||
{stdenv, getopt, fetchurl, aterm, toolbuslib, ptsupport, sdfsupport, asfsupport, ascsupport, sglr}: derivation {
|
||||
{stdenv, getopt, fetchurl, aterm, toolbuslib, ptsupport, sdfsupport, asfsupport, ascsupport, sglr}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pgen-2.0";
|
||||
system = stdenv.system;
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://www.cwi.nl/projects/MetaEnv/pgen/pgen-2.0.tar.gz;
|
||||
md5 = "368cd8abeed29591a35660d8cea79975";
|
||||
};
|
||||
stdenv = stdenv;
|
||||
aterm = aterm;
|
||||
getopt = getopt;
|
||||
toolbuslib = toolbuslib;
|
||||
ptsupport = ptsupport;
|
||||
sdfsupport = sdfsupport;
|
||||
asfsupport = asfsupport;
|
||||
ascsupport = ascsupport;
|
||||
sglr = sglr;
|
||||
inherit stdenv aterm getopt toolbuslib ptsupport sdfsupport asfsupport ascsupport sglr;
|
||||
buildInputs = [stdenv aterm getopt toolbuslib ptsupport sdfsupport asfsupport ascsupport sglr];
|
||||
}
|
@ -1,7 +1,3 @@
|
||||
buildinputs="$aterm $ptsupport $toolbuslib"
|
||||
. $stdenv/setup || exit 1
|
||||
|
||||
tar zxf $src || exit 1
|
||||
cd sglr-* || exit 1
|
||||
./configure --prefix=$out --with-aterm=$aterm --with-toolbuslib=$toolbuslib --with-pt-support=$ptsupport || exit 1
|
||||
make install || exit 1
|
||||
. $stdenv/setup
|
||||
configureFlags="--with-aterm=$aterm --with-toolbuslib=$toolbuslib --with-pt-support=$ptsupport"
|
||||
genericBuild
|
||||
|
@ -1,13 +1,12 @@
|
||||
{stdenv, fetchurl, aterm, toolbuslib, ptsupport}: derivation {
|
||||
{stdenv, fetchurl, aterm, toolbuslib, ptsupport}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "sglr-3.10.2";
|
||||
system = stdenv.system;
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://www.cwi.nl/projects/MetaEnv/sglr/sglr-3.10.2.tar.gz;
|
||||
md5 = "39aa609be84115d7ddc56a6c74b792b7";
|
||||
};
|
||||
stdenv = stdenv;
|
||||
aterm = aterm;
|
||||
ptsupport = ptsupport;
|
||||
toolbuslib = toolbuslib;
|
||||
inherit stdenv aterm ptsupport toolbuslib;
|
||||
buildInputs = [stdenv aterm ptsupport toolbuslib];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user