nixpkgs/pkgs/by-name/gi/git-subrepo/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

49 lines
1.1 KiB
Nix

{ lib, stdenv, fetchFromGitHub, git, makeWrapper, which, installShellFiles }:
stdenv.mkDerivation rec {
pname = "git-subrepo";
version = "0.4.9";
src = fetchFromGitHub {
owner = "ingydotnet";
repo = "git-subrepo";
rev = version;
sha256 = "sha256-Fwh4haGXVDsLexe/1kjUhY4lF6u5cTrAwivZiOkPig0=";
};
nativeBuildInputs = [
makeWrapper
which
installShellFiles
];
buildInputs = [
git
];
makeFlags = [
"PREFIX=${placeholder "out"}"
"INSTALL_LIB=${placeholder "out"}/bin"
"INSTALL_MAN=${placeholder "out"}/share/man/man1"
];
postInstall = ''
installShellCompletion --bash --name git-subrepo.bash share/completion.bash
installShellCompletion --zsh share/zsh-completion/_git-subrepo
'';
postFixup = ''
wrapProgram $out/bin/git-subrepo \
--prefix PATH : "${git}/bin"
'';
meta = with lib; {
homepage = "https://github.com/ingydotnet/git-subrepo";
description = "Git submodule alternative";
mainProgram = "git-subrepo";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ ryantrinkle ];
};
}