1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 05:31:22 +00:00
nixpkgs/pkgs/development/libraries/gecode/default.nix

22 lines
531 B
Nix
Raw Normal View History

2014-09-10 13:14:41 +01:00
{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
name = "gecode-${version}";
2015-04-14 08:47:30 +01:00
version = "4.4.0";
2014-09-10 13:14:41 +01:00
src = fetchurl {
url = "http://www.gecode.org/download/${name}.tar.gz";
2015-04-14 08:47:30 +01:00
sha256 = "0akqjzy6pd229mn0lhpdbyc4wbazhprkd5ijqs99z68bj3b9h0s3";
2014-09-10 13:14:41 +01:00
};
buildInputs = [ perl ];
2014-09-10 14:38:25 +01:00
2014-09-10 15:15:24 +01:00
meta = with stdenv.lib; {
license = licenses.mit;
2014-09-10 14:38:25 +01:00
homepage = http://www.gecode.org;
description = "Toolkit for developing constraint-based systems";
2014-09-10 15:15:24 +01:00
platforms = platforms.all;
2014-09-10 14:38:25 +01:00
maintainers = [ maintainers.manveru ];
};
2014-09-10 13:14:41 +01:00
}