summary refs log tree commit diff
path: root/pkgs/development/interpreters/unicon-lang
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-23 20:15:07 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-23 20:29:03 +0700
commit001c0cbe54228f88d5634f431fcaf460b8ff4590 (patch)
tree01920ebc73d4e3e4b007d67ab0a0640f5d9e39db /pkgs/development/interpreters/unicon-lang
parentf6a583eeece936a1d917de67194fec4b6c74cf1f (diff)
downloadnixpkgs-001c0cbe54228f88d5634f431fcaf460b8ff4590.tar
nixpkgs-001c0cbe54228f88d5634f431fcaf460b8ff4590.tar.gz
nixpkgs-001c0cbe54228f88d5634f431fcaf460b8ff4590.tar.bz2
nixpkgs-001c0cbe54228f88d5634f431fcaf460b8ff4590.tar.lz
nixpkgs-001c0cbe54228f88d5634f431fcaf460b8ff4590.tar.xz
nixpkgs-001c0cbe54228f88d5634f431fcaf460b8ff4590.tar.zst
nixpkgs-001c0cbe54228f88d5634f431fcaf460b8ff4590.zip
pkgs/development/interpreters: stdenv.lib -> lib
Diffstat (limited to 'pkgs/development/interpreters/unicon-lang')
-rw-r--r--pkgs/development/interpreters/unicon-lang/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/unicon-lang/default.nix b/pkgs/development/interpreters/unicon-lang/default.nix
index 4889a21ddfd..ac0a944f210 100644
--- a/pkgs/development/interpreters/unicon-lang/default.nix
+++ b/pkgs/development/interpreters/unicon-lang/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, unzip, libX11, libXt, libnsl }:
+{ lib, stdenv, fetchurl, unzip, libX11, libXt, libnsl }:
 
 stdenv.mkDerivation {
   pname = "unicon-lang";
@@ -33,7 +33,7 @@ stdenv.mkDerivation {
     cp -r bin $out/
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "A very high level, goal-directed, object-oriented, general purpose applications language";
     maintainers = with maintainers; [ vrthra ];
     platforms = platforms.linux;