Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

gambit: 4.9.0 -> 4.9.1

+12 -13
+6 -6
pkgs/development/compilers/gambit/bootstrap.nix
··· 1 - { stdenv, fetchurl, autoconf, ... }: 2 3 stdenv.mkDerivation rec { 4 name = "gambit-bootstrap-${version}"; 5 - version = "4.8.9"; 6 - tarball_version = "v4_8_9"; 7 8 src = fetchurl { 9 - url = "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.8/source/gambit-${tarball_version}-devel.tgz"; 10 - sha256 = "b7f86c794711792ca556ce41f8bc7043dffc395c01bb6d8d119bc2f454f89fbf"; 11 }; 12 13 - buildInputs = [ autoconf ]; 14 15 configurePhase = '' 16 ./configure --prefix=$out
··· 1 + { stdenv, fetchurl, autoconf, git, ... }: 2 3 stdenv.mkDerivation rec { 4 name = "gambit-bootstrap-${version}"; 5 + version = "4.9.1"; 6 + tarball_version = "v4_9_1"; 7 8 src = fetchurl { 9 + url = "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.9/source/gambit-${tarball_version}-devel.tgz"; 10 + sha256 = "10kzv568gimp9nzh5xw0h01vw50wi68z3awfp9ibqrpq2l0n7mw7"; 11 }; 12 13 + buildInputs = [ autoconf git ]; 14 15 configurePhase = '' 16 ./configure --prefix=$out
+2 -2
pkgs/development/compilers/gambit/build.nix
··· 1 - { stdenv, git, openssl, autoconf, pkgs, makeStaticLibraries, version, SRC }: 2 3 stdenv.mkDerivation rec { 4 name = "gambit-${version}"; 5 - src = SRC; 6 7 bootstrap = import ./bootstrap.nix ( pkgs ); 8
··· 1 + { stdenv, git, openssl, autoconf, pkgs, makeStaticLibraries, version, src }: 2 3 stdenv.mkDerivation rec { 4 name = "gambit-${version}"; 5 + inherit src; 6 7 bootstrap = import ./bootstrap.nix ( pkgs ); 8
+4 -5
pkgs/development/compilers/gambit/default.nix
··· 1 { stdenv, callPackage, fetchurl }: 2 3 callPackage ./build.nix { 4 - version = "4.9.0"; 5 - 6 - SRC = fetchurl { 7 - url = "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.9/source/gambit-v4_9_0-devel.tgz"; 8 - sha256 = "0wyfpjs244zrbrdil9rfkdgcawvms84z0r77qwhwadghma4dqgjf"; 9 }; 10 inherit stdenv; 11 }
··· 1 { stdenv, callPackage, fetchurl }: 2 3 callPackage ./build.nix { 4 + version = "4.9.1"; 5 + src = fetchurl { 6 + url = "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.9/source/gambit-v4_9_1-devel.tgz"; 7 + sha256 = "10kzv568gimp9nzh5xw0h01vw50wi68z3awfp9ibqrpq2l0n7mw7"; 8 }; 9 inherit stdenv; 10 }