summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorNiklas Thörne <notrupertthorne@gmail.com>2017-03-06 11:07:42 +0100
committerNiklas Thörne <notrupertthorne@gmail.com>2017-03-06 11:15:35 +0100
commitae38cdad26f72ab1c0d858c1a6a737e366575e31 (patch)
tree7fe9c3bf09710c6bf8c1681d2d5cb2eb59f4daaf /pkgs/development
parent8a104aa085bbdea0b801bef787d9e77c043897b0 (diff)
clog-cli: init at 0.9.2
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/clog-cli/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/tools/clog-cli/default.nix b/pkgs/development/tools/clog-cli/default.nix
new file mode 100644
index 000000000000..9cb2405a36fc
--- /dev/null
+++ b/pkgs/development/tools/clog-cli/default.nix
@@ -0,0 +1,24 @@
+{ fetchFromGitHub, rustPlatform, stdenv }:
+
+with rustPlatform;
+
+buildRustPackage rec {
+ name = "clog-cli-${version}";
+ version = "0.9.2";
+
+ src = fetchFromGitHub {
+ owner = "clog-tool";
+ repo = "clog-cli";
+ rev = "${version}";
+ sha256 = "00sfbchyf50z6mb5dq1837hlrki88rrf043idy6qd1r90488jsbv";
+ };
+
+ depsSha256 = "0czv190r6xhbw33l0jhlri6rgspxb8f6dakcamh52qr3z9m0xs2x";
+
+ meta = {
+ description = "Generate changelogs from local git metadata";
+ homepage = https://github.com/clog-tool/clog-cli;
+ license = stdenv.lib.licenses.mit;
+ platforms = stdenv.lib.platforms.linux;
+ };
+}