pkgs/development/compilers: stdenv.lib -> lib
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user