maude, tecla, buddy: new packages
Maude is a high-level specification language. Buddy and libtecla are required to build Maude. svn path=/nixpkgs/trunk/; revision=12358
This commit is contained in:
19
pkgs/development/libraries/buddy/default.nix
Normal file
19
pkgs/development/libraries/buddy/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec
|
||||
{
|
||||
name = "buddy-2.4";
|
||||
meta =
|
||||
{
|
||||
homepage = "http://sourceforge.net/projects/buddy/";
|
||||
description = "binary decision diagram package";
|
||||
license = "as-is";
|
||||
};
|
||||
src = fetchurl
|
||||
{
|
||||
url = "mirror://sourceforge/buddy/${name}.tar.gz";
|
||||
sha256 = "0dl86l9xkl33wnkz684xa9axhcxx2zzi4q5lii0axnb9lsk81pyk";
|
||||
};
|
||||
configureFlags = "CFLAGS=-O3 CXXFLAGS=-O3 --disable-static";
|
||||
doCheck = true;
|
||||
}
|
||||
18
pkgs/development/libraries/tecla/default.nix
Normal file
18
pkgs/development/libraries/tecla/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec
|
||||
{
|
||||
name = "tecla-1.6.1";
|
||||
meta =
|
||||
{
|
||||
homepage = "http://www.astro.caltech.edu/~mcs/tecla/";
|
||||
description = "Tecla command-line editing library";
|
||||
license = "as-is";
|
||||
};
|
||||
src = fetchurl
|
||||
{
|
||||
url = "http://www.astro.caltech.edu/~mcs/tecla/lib${name}.tar.gz";
|
||||
sha256 = "18crv6q5f9g0cg6ry5h9dsa10inhpslklrv20h70f58lpm3jknr1";
|
||||
};
|
||||
configureFlags = "CFLAGS=-O3 CXXFLAGS=-O3";
|
||||
}
|
||||
Reference in New Issue
Block a user