* Got rid of all --disable-static flags; they're redundant now.

* Also a bunch of style cleanups (tabs, with args, ...).

svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
This commit is contained in:
Eelco Dolstra
2009-04-21 23:18:09 +00:00
parent 2a699fe5fb
commit 94d7d1fdbb
75 changed files with 241 additions and 336 deletions
+8 -7
View File
@@ -1,19 +1,20 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec
{
stdenv.mkDerivation rec {
name = "buddy-2.4";
meta =
{
meta = {
homepage = "http://sourceforge.net/projects/buddy/";
description = "binary decision diagram package";
license = "as-is";
};
src = fetchurl
{
src = fetchurl {
url = "mirror://sourceforge/buddy/${name}.tar.gz";
sha256 = "0dl86l9xkl33wnkz684xa9axhcxx2zzi4q5lii0axnb9lsk81pyk";
};
configureFlags = "CFLAGS=-O3 CXXFLAGS=-O3 --disable-static";
configureFlags = "CFLAGS=-O3 CXXFLAGS=-O3";
doCheck = true;
}