summary refs log tree commit diff
path: root/pkgs/development/compilers/gforth/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-01-23 12:40:13 +0000
committerGitHub <noreply@github.com>2021-01-23 12:40:13 +0000
commit58752914f4b22a570ff7cba694df86aef20e255a (patch)
tree13ed5492ea1c875253d18c4bcb981f9effe11ee2 /pkgs/development/compilers/gforth/default.nix
parentf6c56619d7aa645772bf160c048b36d2269508c6 (diff)
parent10a27d6d5296619de1a05538cd1d5b81b612b225 (diff)
downloadnixpkgs-58752914f4b22a570ff7cba694df86aef20e255a.tar
nixpkgs-58752914f4b22a570ff7cba694df86aef20e255a.tar.gz
nixpkgs-58752914f4b22a570ff7cba694df86aef20e255a.tar.bz2
nixpkgs-58752914f4b22a570ff7cba694df86aef20e255a.tar.lz
nixpkgs-58752914f4b22a570ff7cba694df86aef20e255a.tar.xz
nixpkgs-58752914f4b22a570ff7cba694df86aef20e255a.tar.zst
nixpkgs-58752914f4b22a570ff7cba694df86aef20e255a.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/development/compilers/gforth/default.nix')
-rw-r--r--pkgs/development/compilers/gforth/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/compilers/gforth/default.nix b/pkgs/development/compilers/gforth/default.nix
index d2a2a7a85e3..bdf172cb9b9 100644
--- a/pkgs/development/compilers/gforth/default.nix
+++ b/pkgs/development/compilers/gforth/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, m4 }:
+{ lib, stdenv, fetchurl, m4 }:
 
 let
   version = "0.7.3";
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
 
   buildInputs = [ m4 ];
 
-  configureFlags = stdenv.lib.optional stdenv.isDarwin [ "--build=x86_64-apple-darwin" ];
+  configureFlags = lib.optional stdenv.isDarwin [ "--build=x86_64-apple-darwin" ];
 
   postInstall = ''
     mkdir -p $out/share/emacs/site-lisp
@@ -23,7 +23,7 @@ stdenv.mkDerivation {
   meta = {
     description = "The Forth implementation of the GNU project";
     homepage = "https://www.gnu.org/software/gforth/";
-    license = stdenv.lib.licenses.gpl3;
-    platforms = stdenv.lib.platforms.all;
+    license = lib.licenses.gpl3;
+    platforms = lib.platforms.all;
   };
 }