mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 05:23:16 +00:00
23 lines
570 B
Nix
23 lines
570 B
Nix
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "srvc";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "insilica";
|
|
repo = "rs-srvc";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-PBs86cvEacvCt/2JnURL4qKvXGXRZHWaGYrPUSsnt0I=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-5CUbfI67gsINdHcxN8KbIN10Mu90rAU53DbmQ5QotWg=";
|
|
|
|
meta = with lib; {
|
|
description = "Sysrev version control";
|
|
homepage = "https://github.com/insilica/rs-srvc";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ john-shaffer ];
|
|
};
|
|
}
|