treewide: stdenv.lib -> lib
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, coreutils, gnugrep, gnused, makeWrapper, git
|
||||
{ lib, stdenv, fetchFromGitHub, coreutils, gnugrep, gnused, makeWrapper, git
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
cp -a git-sync $out/bin/git-sync
|
||||
'';
|
||||
|
||||
wrapperPath = with stdenv.lib; makeBinPath [
|
||||
wrapperPath = with lib; makeBinPath [
|
||||
coreutils
|
||||
git
|
||||
gnugrep
|
||||
@@ -38,8 +38,8 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
description = "A script to automatically synchronize a git repository";
|
||||
homepage = "https://github.com/simonthum/git-sync";
|
||||
maintainers = with stdenv.lib.maintainers; [ imalison ];
|
||||
license = stdenv.lib.licenses.cc0;
|
||||
platforms = with stdenv.lib.platforms; unix;
|
||||
maintainers = with lib.maintainers; [ imalison ];
|
||||
license = lib.licenses.cc0;
|
||||
platforms = with lib.platforms; unix;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user