summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/hop
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/hop
parentbbaff89ceb389e9c21a90eefac60ebc9853144be (diff)
pkgs/development/compilers: stdenv.lib -> lib
Diffstat (limited to 'pkgs/development/compilers/hop')
-rw-r--r--pkgs/development/compilers/hop/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/hop/default.nix b/pkgs/development/compilers/hop/default.nix
index fd3ef137ae60..8e5bd6a7df03 100644
--- a/pkgs/development/compilers/hop/default.nix
+++ b/pkgs/development/compilers/hop/default.nix
@@ -1,8 +1,8 @@
-{ stdenv, fetchurl, bigloo }:
+{ lib, stdenv, fetchurl, bigloo }:
# Compute the “release” version of bigloo (before the first dash, if any)
let bigloo-release =
- let inherit (stdenv.lib) head splitString; in
+ let inherit (lib) head splitString; in
head (splitString "-" (builtins.parseDrvName bigloo.name).version)
; in
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
"--bigloolibdir=${bigloo}/lib/bigloo/${bigloo-release}/"
];
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "A multi-tier programming language for the Web 2.0 and the so-called diffuse Web";
homepage = "http://hop.inria.fr/";
license = licenses.gpl2Plus;