1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-14 08:34:50 +00:00
nixpkgs/pkgs/applications/version-management/verco/default.nix

23 lines
614 B
Nix
Raw Normal View History

2021-09-09 20:37:33 +01:00
{ fetchFromGitHub, lib, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "verco";
2021-10-13 22:30:51 +01:00
version = "6.6.0";
2021-09-09 20:37:33 +01:00
src = fetchFromGitHub {
owner = "vamolessa";
repo = pname;
rev = "v${version}";
2021-10-13 22:30:51 +01:00
sha256 = "sha256-ZfiGDEx6gjYziatbQSpqghmpXMXSPPBtTVYjll922t8=";
2021-09-09 20:37:33 +01:00
};
2021-10-13 22:30:51 +01:00
cargoSha256 = "sha256-jrA6vGw+lyfix8L3INBamrJ4pab5denPzWwjF0dRXB0=";
2021-09-09 20:37:33 +01:00
meta = with lib; {
description = "A simple Git/Mercurial/PlasticSCM tui client based on keyboard shortcuts";
homepage = "https://vamolessa.github.io/verco";
license = licenses.gpl3Only;
maintainers = with maintainers; [ figsoda ];
};
}