nixpkgs/pkgs/development/tools/clog-cli/default.nix

26 lines
627 B
Nix
Raw Normal View History

{ fetchFromGitHub, rustPlatform, lib }:
2017-03-06 10:07:42 +00:00
with rustPlatform;
buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "clog-cli";
2017-03-19 12:40:22 +00:00
version = "0.9.3";
2017-03-06 10:07:42 +00:00
src = fetchFromGitHub {
owner = "clog-tool";
repo = "clog-cli";
2017-03-19 12:40:22 +00:00
rev = "v${version}";
sha256 = "1wxglc4n1dar5qphhj5pab7ps34cjr7jy611fwn72lz0f6c7jp3z";
2017-03-06 10:07:42 +00:00
};
cargoSha256 = "0xcgzlcmlk5ycw4kklprm8lzs72j2zp8xm3dcpy606z4r9qn0c6a";
2017-03-06 10:07:42 +00:00
meta = {
description = "Generate changelogs from local git metadata";
homepage = "https://github.com/clog-tool/clog-cli";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = [lib.maintainers.nthorne];
2017-03-06 10:07:42 +00:00
};
}