1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-05 06:44:40 +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-09-15 19:06:05 +01:00
version = "6.5.5";
2021-09-09 20:37:33 +01:00
src = fetchFromGitHub {
owner = "vamolessa";
repo = pname;
rev = "v${version}";
2021-09-15 19:06:05 +01:00
sha256 = "sha256-n+GGiu/xGGGC6FQPoASok87bCG0MFVIf6l6nt1lvw8A=";
2021-09-09 20:37:33 +01:00
};
2021-09-15 19:06:05 +01:00
cargoSha256 = "sha256-lNtR4N+bFFCr3Ct99DJCbtDeKxTzT7ZjvAWixbQm3jg=";
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 ];
};
}