22 lines
531 B
Nix
22 lines
531 B
Nix
|
{ stdenv, fetchurl, perl }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "gecode-${version}";
|
||
|
version = "3.7.3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "http://www.gecode.org/download/${name}.tar.gz";
|
||
|
sha256 = "0k45jas6p3cyldgyir1314ja3174sayn2h2ly3z9b4dl3368pk77";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ perl ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
license = licenses.mit;
|
||
|
homepage = http://www.gecode.org;
|
||
|
description = "Toolkit for developing constraint-based systems";
|
||
|
platforms = platforms.all;
|
||
|
maintainers = [ maintainers.manveru ];
|
||
|
};
|
||
|
}
|