bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
25 lines
622 B
Nix
25 lines
622 B
Nix
{ stdenv, fetchurl, bison }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "buddy-2.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/buddy/${name}.tar.gz";
|
|
sha256 = "0dl86l9xkl33wnkz684xa9axhcxx2zzi4q5lii0axnb9lsk81pyk";
|
|
};
|
|
|
|
buildInputs = [ bison ];
|
|
patches = [ ./gcc-4.3.3-fixes.patch ];
|
|
configureFlags = "CFLAGS=-O3 CXXFLAGS=-O3";
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = "http://sourceforge.net/projects/buddy/";
|
|
description = "Binary decision diagram package";
|
|
license = "as-is";
|
|
|
|
platforms = with stdenv.lib.platforms; allBut cygwin;
|
|
maintainers = [ stdenv.lib.maintainers.peti ];
|
|
};
|
|
}
|