mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
git-octopus: remove 'with lib;'
This commit is contained in:
parent
07440c4a2d
commit
95c1729ff8
|
@ -1,7 +1,5 @@
|
|||
{ lib, stdenv, fetchFromGitHub, git, perl, makeWrapper }:
|
||||
|
||||
with lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "git-octopus";
|
||||
version = "1.4";
|
||||
|
@ -13,7 +11,7 @@ stdenv.mkDerivation rec {
|
|||
# perl provides shasum
|
||||
postInstall = ''
|
||||
for f in $out/bin/*; do
|
||||
wrapProgram $f --prefix PATH : ${makeBinPath [ git perl ]}
|
||||
wrapProgram $f --prefix PATH : ${lib.makeBinPath [ git perl ]}
|
||||
done
|
||||
'';
|
||||
|
||||
|
@ -24,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "14p61xk7jankp6gc26xciag9fnvm7r9vcbhclcy23f4ghf4q4sj1";
|
||||
};
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/lesfurets/git-octopus";
|
||||
description = "Continuous merge workflow";
|
||||
license = licenses.lgpl3;
|
||||
|
|
Loading…
Reference in a new issue