mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Added sdf2-bundle 2.4
svn path=/nixpkgs/branches/stdenv-updates/; revision=10382
This commit is contained in:
parent
316b5505cd
commit
1ec43cc340
2 changed files with 20 additions and 0 deletions
12
pkgs/development/tools/parsing/sdf/sdf2-bundle-2.4.nix
Normal file
12
pkgs/development/tools/parsing/sdf/sdf2-bundle-2.4.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{stdenv, fetchurl, aterm, getopt, pkgconfig}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "sdf2-bundle-2.4";
|
||||
src = fetchurl {
|
||||
url = http://buildfarm.st.ewi.tudelft.nl/releases/meta-environment/sdf2-bundle-2.4pre212034-2nspl1xc/sdf2-bundle-2.4.tar.gz;
|
||||
md5 = "00107bef17d3fb8486575f8974fb384b";
|
||||
};
|
||||
|
||||
buildInputs = [aterm pkgconfig];
|
||||
propagatedBuildInputs = [getopt];
|
||||
}
|
|
@ -1632,6 +1632,14 @@ rec {
|
|||
stdenv = overrideInStdenv stdenv [gnumake380];
|
||||
};
|
||||
|
||||
sdf24 = import ../development/tools/parsing/sdf/sdf2-bundle-2.4.nix {
|
||||
inherit fetchurl getopt pkgconfig;
|
||||
aterm = aterm25;
|
||||
# Note: sdf2-bundle currently requires GNU make 3.80; remove
|
||||
# explicit dependency when this is fixed.
|
||||
stdenv = overrideInStdenv stdenv [gnumake380];
|
||||
};
|
||||
|
||||
strace = import ../development/tools/misc/strace {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue