pkgs/development/tools: stdenv.lib -> lib
This commit is contained in:
@@ -2,13 +2,13 @@
|
||||
, withISpin ? true, tk, swarm, graphviz }:
|
||||
|
||||
let
|
||||
binPath = stdenv.lib.makeBinPath [ gcc ];
|
||||
ibinPath = stdenv.lib.makeBinPath [ gcc tk swarm graphviz tk ];
|
||||
binPath = lib.makeBinPath [ gcc ];
|
||||
ibinPath = lib.makeBinPath [ gcc tk swarm graphviz tk ];
|
||||
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "spin";
|
||||
version = "6.4.9";
|
||||
url-version = stdenv.lib.replaceChars ["."] [""] version;
|
||||
url-version = lib.replaceChars ["."] [""] version;
|
||||
|
||||
src = fetchurl {
|
||||
# The homepage is behind CloudFlare anti-DDoS protection, which blocks cURL.
|
||||
@@ -36,7 +36,7 @@ in stdenv.mkDerivation rec {
|
||||
--prefix PATH ':' "$out/bin:${ibinPath}"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Formal verification tool for distributed software systems";
|
||||
homepage = "http://spinroot.com/";
|
||||
license = licenses.free;
|
||||
|
||||
Reference in New Issue
Block a user