nixpkgs/pkgs/by-name/gi/git-run/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
623 B
Nix
Raw Permalink Normal View History

2024-06-26 01:10:21 -04:00
{
lib,
buildNpmPackage,
fetchFromGitHub
}:
buildNpmPackage rec {
pname = "git-run";
version = "0.5.5";
src = fetchFromGitHub {
owner = "mixu";
repo = "gr";
rev = "v${version}";
hash = "sha256-WPnar87p0GYf6ehhVEUeZd2pTjS95Zl6NpiJuIOQ5Tc=";
};
npmDepsHash = "sha256-PdxKFopmuNRWkSwPDX1wcNTvRtbVScl1WsZi7sdkKMw=";
makeCacheWritable = true;
dontBuild = true;
meta = {
description = "Multiple git repository management tool";
homepage = "https://mixu.net/gr/";
license = lib.licenses.bsd3;
mainProgram = "gr";
maintainers = with lib.maintainers; [ pyrox0 ];
};
}