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-14 20:08:18 +01:00
version = "6.7.0";
2021-09-09 20:37:33 +01:00
src = fetchFromGitHub {
owner = "vamolessa";
repo = pname;
rev = "v${version}";
2021-10-14 20:08:18 +01:00
sha256 = "sha256-H8rDaRVU3G3iuBv0Tz/YOuYbL2k8wEoEIIEG7hjU6eM=";
2021-09-09 20:37:33 +01:00
};
2021-10-14 20:08:18 +01:00
cargoSha256 = "sha256-4Ou/stedL3WCY4Awsl++lc5fZ9gxd4uorf4G2/0DiPc=";
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 ];
};
}