nixpkgs/pkgs/by-name/un/ungit/package.nix

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

33 lines
724 B
Nix
Raw Normal View History

2023-08-21 05:19:20 +01:00
{ lib
, buildNpmPackage
, fetchFromGitHub
}:
buildNpmPackage rec {
pname = "ungit";
2024-10-04 06:35:01 +01:00
version = "1.5.28";
2023-08-21 05:19:20 +01:00
src = fetchFromGitHub {
owner = "FredrikNoren";
repo = "ungit";
rev = "v${version}";
2024-10-04 06:35:01 +01:00
hash = "sha256-zLc+qzbbaQs6Y3NJFHupxyZ0QfuM/VW97dFESR+5dVQ=";
2023-08-21 05:19:20 +01:00
};
2024-10-04 06:35:01 +01:00
npmDepsHash = "sha256-pYOBdCb6G24JBGWOhd4fyVEEUn19D9t/GxjjIi/2ya0=";
2023-08-21 05:19:20 +01:00
env = {
ELECTRON_SKIP_BINARY_DOWNLOAD = true;
PUPPETEER_SKIP_DOWNLOAD = true;
};
meta = {
changelog = "https://github.com/FredrikNoren/ungit/blob/${src.rev}/CHANGELOG.md";
description = "Git made easy";
homepage = "https://github.com/FredrikNoren/ungit";
license = lib.licenses.mit;
mainProgram = "ungit";
maintainers = [ ];
2023-08-21 05:19:20 +01:00
};
}