about summary refs log tree commit diff
path: root/pkgs/shells/oh
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-15 13:28:56 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-15 14:24:03 +0700
commite245ae3c3ac34d24ec6ceb7b86aa74be4fb8e707 (patch)
tree2054faccda7117a09809be91fb1b9e12fbe70a5e /pkgs/shells/oh
parentf35b06e86db3574743efd24ead9ba6b68e1b9a99 (diff)
pkgs/shells: stdenv.lib -> lib
Diffstat (limited to 'pkgs/shells/oh')
-rw-r--r--pkgs/shells/oh/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/oh/default.nix b/pkgs/shells/oh/default.nix
index 3ae8a7c600aac..3ea41d7f47286 100644
--- a/pkgs/shells/oh/default.nix
+++ b/pkgs/shells/oh/default.nix
@@ -2,7 +2,7 @@
 
 buildGoPackage rec {
   pname = "oh";
-  version = "20160522-${stdenv.lib.strings.substring 0 7 rev}";
+  version = "20160522-${lib.strings.substring 0 7 rev}";
   rev = "0daaf4081475fb9d6b3801c85019bdd57b2ee9b4";
 
   goPackagePath = "github.com/michaelmacinnis/oh";
@@ -18,6 +18,6 @@ buildGoPackage rec {
   meta = with lib;{
     homepage = "https://github.com/michaelmacinnis/oh";
     description = "A Unix shell";
-    license = stdenv.lib.licenses.mit;
+    license = lib.licenses.mit;
   };
 }