mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
commit
427363c45a
21
pkgs/development/libraries/gecode/default.nix
Normal file
21
pkgs/development/libraries/gecode/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchurl, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gecode-${version}";
|
||||
version = "4.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.gecode.org/download/${name}.tar.gz";
|
||||
sha256 = "18a1nd6sxqqh05hd9zwcgq9qhqrr6hi0nbzpwpay1flkv5gvg2d7";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -4768,6 +4768,8 @@ let
|
||||
|
||||
gdbm = callPackage ../development/libraries/gdbm { };
|
||||
|
||||
gecode = callPackage ../development/libraries/gecode { };
|
||||
|
||||
gegl = callPackage ../development/libraries/gegl {
|
||||
# avocodec avformat librsvg
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user