diff options
author | Francois-Rene Rideau | 2020-05-17 16:10:03 -0400 |
---|---|---|
committer | Francois-Rene Rideau | 2020-05-17 16:14:22 -0400 |
commit | 0d0f475f27b0978490a44327bdd558947d62c1e9 (patch) | |
tree | 3e4c27cd20cf3ae0ba603c25a78863cadc123fe7 /pkgs/development/compilers/gerbil/unstable.nix | |
parent | f9360e7974e6cb57d99995dbffabaef863c3917d (diff) |
gerbil: 0.15.1 -> 0.16
Now that v0.16 was released at last, make the configurePhase and instalPhase the same again for default and unstable.
Diffstat (limited to 'pkgs/development/compilers/gerbil/unstable.nix')
-rw-r--r-- | pkgs/development/compilers/gerbil/unstable.nix | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/pkgs/development/compilers/gerbil/unstable.nix b/pkgs/development/compilers/gerbil/unstable.nix index e8bf18a64299..9de6dc42907a 100644 --- a/pkgs/development/compilers/gerbil/unstable.nix +++ b/pkgs/development/compilers/gerbil/unstable.nix @@ -1,4 +1,4 @@ -{ callPackage, fetchFromGitHub, gambit-unstable, gambit-support, coreutils, bash }: +{ callPackage, fetchFromGitHub, gambit-unstable, gambit-support }: callPackage ./build.nix rec { version = "unstable-2020-05-17"; @@ -12,23 +12,4 @@ callPackage ./build.nix rec { inherit gambit-support; gambit = gambit-unstable; gambit-params = gambit-support.unstable-params; - configurePhase = '' - (cd src && ./configure \ - --prefix=$out/gerbil \ - --with-gambit=${gambit}/gambit \ - --enable-libxml \ - --enable-libyaml \ - --enable-zlib \ - --enable-sqlite \ - --enable-mysql \ - --enable-lmdb \ - --enable-leveldb) - ''; - installPhase = '' - runHook preInstall - mkdir -p $out/gerbil $out/bin - (cd src; ./install) - (cd $out/bin ; ln -s ../gerbil/bin/* .) - runHook postInstall - ''; } |