summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/gnu-smalltalk
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-22 18:25:31 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-23 08:57:37 +0700
commitacc5f7b18a60bc9b1024e5e1882bf7362e6492e6 (patch)
tree597dab74ebab3915ddff291ec6aa4913f4010c68 /pkgs/development/compilers/gnu-smalltalk
parentbbaff89ceb389e9c21a90eefac60ebc9853144be (diff)
pkgs/development/compilers: stdenv.lib -> lib
Diffstat (limited to 'pkgs/development/compilers/gnu-smalltalk')
-rw-r--r--pkgs/development/compilers/gnu-smalltalk/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/compilers/gnu-smalltalk/default.nix b/pkgs/development/compilers/gnu-smalltalk/default.nix
index e06c16058d1d..cd33baad993b 100644
--- a/pkgs/development/compilers/gnu-smalltalk/default.nix
+++ b/pkgs/development/compilers/gnu-smalltalk/default.nix
@@ -1,4 +1,4 @@
-{ config, stdenv, fetchurl, pkg-config, libtool
+{ config, lib, stdenv, fetchurl, pkg-config, libtool
, zip, libffi, libsigsegv, readline, gmp
, gnutls, gnome2, cairo, SDL, sqlite
, emacsSupport ? config.emacsSupport or false, emacs ? null }:
@@ -11,7 +11,7 @@ let # The gnu-smalltalk project has a dependency to the libsigsegv library.
# Adding --enable-static=libsigsegv to the gnu-smalltalk configuration flags
# does not help, the error still occurs. The only solution is to build a
# shared version of libsigsegv.
- libsigsegv-shared = stdenv.lib.overrideDerivation libsigsegv (oldAttrs: {
+ libsigsegv-shared = lib.overrideDerivation libsigsegv (oldAttrs: {
configureFlags = [ "--enable-shared" ];
});
@@ -32,19 +32,19 @@ in stdenv.mkDerivation rec {
libtool zip libffi libsigsegv-shared readline gmp gnutls gnome2.gtk
cairo SDL sqlite
]
- ++ stdenv.lib.optional emacsSupport emacs;
+ ++ lib.optional emacsSupport emacs;
- configureFlags = stdenv.lib.optional (!emacsSupport) "--without-emacs";
+ configureFlags = lib.optional (!emacsSupport) "--without-emacs";
hardeningDisable = [ "format" ];
- installFlags = stdenv.lib.optional emacsSupport "lispdir=$(out)/share/emacs/site-lisp";
+ installFlags = lib.optional emacsSupport "lispdir=$(out)/share/emacs/site-lisp";
# For some reason the tests fail if executated with nix-build, but pass if
# executed within nix-shell --pure.
doCheck = false;
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "A free implementation of the Smalltalk-80 language";
longDescription = ''
GNU Smalltalk is a free implementation of the Smalltalk-80 language. It