mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Upgraded sdf2-bundle to 2.3.1
svn path=/nixpkgs/trunk/; revision=3627
This commit is contained in:
parent
e5db73bd73
commit
5d98173434
|
@ -1 +1 @@
|
|||
import ./sdf2-bundle-2.3.nix
|
||||
import ./sdf2-bundle-2.3.1.nix
|
12
pkgs/development/tools/parsing/sdf/sdf2-bundle-2.3.1.nix
Normal file
12
pkgs/development/tools/parsing/sdf/sdf2-bundle-2.3.1.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{stdenv, fetchurl, aterm, getopt}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "sdf2-bundle-2.3";
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.stratego-language.org/pub/stratego/sdf2/sdf2-bundle-2.3.1/sdf2-bundle-2.3.1.tar.gz;
|
||||
md5 = "4576b0b5315dccae8b038c53305c6979";
|
||||
};
|
||||
|
||||
buildInputs = [aterm];
|
||||
propagatedBuildInputs = [getopt];
|
||||
}
|
|
@ -619,10 +619,7 @@ rec {
|
|||
};
|
||||
|
||||
sdf = (import ../development/tools/parsing/sdf) {
|
||||
inherit fetchurl stdenv getopt;
|
||||
aterm = (import ../development/libraries/aterm/aterm-2.3.1.nix) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
inherit fetchurl stdenv aterm getopt;
|
||||
};
|
||||
|
||||
expat = (import ../development/libraries/expat) {
|
||||
|
|
Loading…
Reference in a new issue