Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
837 B
Nix
45 lines
837 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
git,
|
|
perl,
|
|
makeWrapper,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "git-octopus";
|
|
version = "1.4";
|
|
|
|
installFlags = [ "prefix=$(out)" ];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
# perl provides shasum
|
|
postInstall = ''
|
|
for f in $out/bin/*; do
|
|
wrapProgram $f --prefix PATH : ${
|
|
lib.makeBinPath [
|
|
git
|
|
perl
|
|
]
|
|
}
|
|
done
|
|
'';
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lesfurets";
|
|
repo = "git-octopus";
|
|
rev = "v${version}";
|
|
sha256 = "14p61xk7jankp6gc26xciag9fnvm7r9vcbhclcy23f4ghf4q4sj1";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/lesfurets/git-octopus";
|
|
description = "Continuous merge workflow";
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.mic92 ];
|
|
};
|
|
}
|