571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
33 lines
778 B
Nix
33 lines
778 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];
|
|
};
|
|
}
|