09e0cc7cc7
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated https://repology.org/repository/nix_stable/problems
25 lines
621 B
Nix
25 lines
621 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 = https://sourceforge.net/projects/buddy/;
|
|
description = "Binary decision diagram package";
|
|
license = "as-is";
|
|
|
|
platforms = with stdenv.lib.platforms; allBut cygwin;
|
|
maintainers = [ stdenv.lib.maintainers.peti ];
|
|
};
|
|
}
|