summaryrefslogtreecommitdiffstats
path: root/pkgs/development/tools/erlang
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-23 19:26:19 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-23 20:30:03 +0700
commitc522fec2743ffb95f2bc296f249232d73ae57dd1 (patch)
treec29207eba8c137fd2e9ff59d7186c9a4dfd0cdc4 /pkgs/development/tools/erlang
parentf6a583eeece936a1d917de67194fec4b6c74cf1f (diff)
pkgs/development/tools: stdenv.lib -> lib
Diffstat (limited to 'pkgs/development/tools/erlang')
-rw-r--r--pkgs/development/tools/erlang/cuter/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/erlang/cuter/default.nix b/pkgs/development/tools/erlang/cuter/default.nix
index f9d63cc86d8d..44ed61ac1d5f 100644
--- a/pkgs/development/tools/erlang/cuter/default.nix
+++ b/pkgs/development/tools/erlang/cuter/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, autoreconfHook, which, writeText, makeWrapper, fetchFromGitHub, erlang
+{ lib, stdenv, autoreconfHook, which, writeText, makeWrapper, fetchFromGitHub, erlang
, z3, python }:
stdenv.mkDerivation rec {
@@ -38,9 +38,9 @@ stdenv.mkDerivation rec {
meta = {
description = "A concolic testing tool for the Erlang functional programming language";
- license = stdenv.lib.licenses.gpl3;
+ license = lib.licenses.gpl3;
homepage = "https://github.com/aggelgian/cuter";
- maintainers = with stdenv.lib.maintainers; [ ericbmerritt ];
- platforms = with stdenv.lib.platforms; unix;
+ maintainers = with lib.maintainers; [ ericbmerritt ];
+ platforms = with lib.platforms; unix;
};
}