tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
gambit: 4.9.0 -> 4.9.1
Francois-Rene Rideau
7 years ago
bbd4888d
0249f7d4
+12
-13
3 changed files
expand all
collapse all
unified
split
pkgs
development
compilers
gambit
bootstrap.nix
build.nix
default.nix
+6
-6
pkgs/development/compilers/gambit/bootstrap.nix
···
1
1
-
{ stdenv, fetchurl, autoconf, ... }:
1
1
+
{ stdenv, fetchurl, autoconf, git, ... }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "gambit-bootstrap-${version}";
5
5
-
version = "4.8.9";
6
6
-
tarball_version = "v4_8_9";
5
5
+
version = "4.9.1";
6
6
+
tarball_version = "v4_9_1";
7
7
8
8
src = fetchurl {
9
9
-
url = "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.8/source/gambit-${tarball_version}-devel.tgz";
10
10
-
sha256 = "b7f86c794711792ca556ce41f8bc7043dffc395c01bb6d8d119bc2f454f89fbf";
9
9
+
url = "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.9/source/gambit-${tarball_version}-devel.tgz";
10
10
+
sha256 = "10kzv568gimp9nzh5xw0h01vw50wi68z3awfp9ibqrpq2l0n7mw7";
11
11
};
12
12
13
13
-
buildInputs = [ autoconf ];
13
13
+
buildInputs = [ autoconf git ];
14
14
15
15
configurePhase = ''
16
16
./configure --prefix=$out
+2
-2
pkgs/development/compilers/gambit/build.nix
···
1
1
-
{ stdenv, git, openssl, autoconf, pkgs, makeStaticLibraries, version, SRC }:
1
1
+
{ stdenv, git, openssl, autoconf, pkgs, makeStaticLibraries, version, src }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "gambit-${version}";
5
5
-
src = SRC;
5
5
+
inherit src;
6
6
7
7
bootstrap = import ./bootstrap.nix ( pkgs );
8
8
+4
-5
pkgs/development/compilers/gambit/default.nix
···
1
1
{ stdenv, callPackage, fetchurl }:
2
2
3
3
callPackage ./build.nix {
4
4
-
version = "4.9.0";
5
5
-
6
6
-
SRC = fetchurl {
7
7
-
url = "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.9/source/gambit-v4_9_0-devel.tgz";
8
8
-
sha256 = "0wyfpjs244zrbrdil9rfkdgcawvms84z0r77qwhwadghma4dqgjf";
4
4
+
version = "4.9.1";
5
5
+
src = fetchurl {
6
6
+
url = "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.9/source/gambit-v4_9_1-devel.tgz";
7
7
+
sha256 = "10kzv568gimp9nzh5xw0h01vw50wi68z3awfp9ibqrpq2l0n7mw7";
9
8
};
10
9
inherit stdenv;
11
10
}