pkgs/development/tools: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-23 19:26:19 +07:00
parent f6a583eeec
commit c522fec274
534 changed files with 1314 additions and 1314 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, buildGoPackage, CoreFoundation }:
{ lib, stdenv, fetchFromGitHub, buildGoPackage, CoreFoundation }:
buildGoPackage rec {
pname = "tychus";
@@ -15,13 +15,13 @@ buildGoPackage rec {
sha256 = "02ybxjsfga89gpg0k21zmykhhnpx1vy3ny8fcwj0qsg73i11alvw";
};
buildInputs = stdenv.lib.optionals stdenv.hostPlatform.isDarwin [ CoreFoundation ];
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreFoundation ];
buildFlags = [ "--tags" "release" ];
meta = {
description = "Command line utility to live-reload your application";
homepage = "https://github.com/devlocker/tychus";
license = stdenv.lib.licenses.mit;
license = lib.licenses.mit;
};
}