nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 27 lines 647 B view raw
1{ 2 fetchFromGitHub, 3 lib, 4 rustPlatform, 5}: 6 7rustPlatform.buildRustPackage rec { 8 pname = "verco"; 9 version = "6.12.0"; 10 11 src = fetchFromGitHub { 12 owner = "vamolessa"; 13 repo = "verco"; 14 rev = "v${version}"; 15 sha256 = "sha256-M3Utrt350I67kqzEH130tgBIiI7rY8ODCSxgMohWWWM="; 16 }; 17 18 cargoHash = "sha256-cpPEIFoEqc/4Md+/5e09B/ZQ+7cflLE+PY4ATAgWUvo="; 19 20 meta = with lib; { 21 description = "Simple Git/Mercurial/PlasticSCM tui client based on keyboard shortcuts"; 22 homepage = "https://vamolessa.github.io/verco"; 23 license = licenses.gpl3Only; 24 maintainers = with maintainers; [ figsoda ]; 25 mainProgram = "verco"; 26 }; 27}