linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / gecode / 3.nix
blob5c660a99ef84396e879e6f8dc8bc6d85c55b9024
1 { lib, stdenv, fetchurl, bash, perl }:
3 stdenv.mkDerivation rec {
4   pname = "gecode";
5   version = "3.7.3";
7   src = fetchurl {
8     url = "http://www.gecode.org/download/${pname}-${version}.tar.gz";
9     sha256 = "0k45jas6p3cyldgyir1314ja3174sayn2h2ly3z9b4dl3368pk77";
10   };
12   nativeBuildInputs = [ bash perl ];
14   preConfigure = "patchShebangs configure";
16   meta = with lib; {
17     license = licenses.mit;
18     homepage = "https://www.gecode.org";
19     description = "Toolkit for developing constraint-based systems";
20     platforms = platforms.all;
21     maintainers = [ maintainers.manveru ];
22   };