pkgs/development/tools: stdenv.lib -> lib
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
{stdenv, fetchurl, makeWrapper, ocaml, ncurses}:
|
||||
{lib, stdenv, fetchurl, makeWrapper, ocaml, ncurses}:
|
||||
let
|
||||
pname = "omake";
|
||||
version = "0.9.8.6-0.rc1";
|
||||
webpage = "http://omake.metaprl.org";
|
||||
in
|
||||
|
||||
if stdenv.lib.versionAtLeast ocaml.version "4.06"
|
||||
if lib.versionAtLeast ocaml.version "4.06"
|
||||
then throw "${pname}-${version} is not available for OCaml ${ocaml.version}"
|
||||
else
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, ocaml, ncurses }:
|
||||
{ lib, stdenv, fetchurl, ocaml, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
description = "A build system designed for scalability and portability";
|
||||
homepage = "http://projects.camlcity.org/projects/omake.html";
|
||||
license = with stdenv.lib.licenses; [
|
||||
license = with lib.licenses; [
|
||||
mit /* scripts */
|
||||
gpl2 /* program */
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user