mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-24 03:43:53 +03:00
Merge pull request #23551 from nthorne/clog-derivation
clog-cli: init at 0.9.2
This commit is contained in:
commit
7576bea49d
@ -353,6 +353,7 @@
|
||||
notthemessiah = "Brian Cohen <brian.cohen.88@gmail.com>";
|
||||
np = "Nicolas Pouillard <np.nix@nicolaspouillard.fr>";
|
||||
nslqqq = "Nikita Mikhailov <nslqqq@gmail.com>";
|
||||
nthorne = "Niklas Thörne <notrupertthorne@gmail.com>";
|
||||
obadz = "obadz <obadz-nixos@obadz.com>";
|
||||
ocharles = "Oliver Charles <ollie@ocharles.org.uk>";
|
||||
odi = "Oliver Dunkl <oliver.dunkl@gmail.com>";
|
||||
|
25
pkgs/development/tools/clog-cli/default.nix
Normal file
25
pkgs/development/tools/clog-cli/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ 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;
|
||||
maintainers = [stdenv.lib.maintainers.nthorne];
|
||||
};
|
||||
}
|
@ -750,6 +750,8 @@ with pkgs;
|
||||
|
||||
cli-visualizer = callPackage ../applications/misc/cli-visualizer { };
|
||||
|
||||
clog-cli = callPackage ../development/tools/clog-cli { };
|
||||
|
||||
cloud-init = callPackage ../tools/virtualization/cloud-init { };
|
||||
|
||||
clib = callPackage ../tools/package-management/clib { };
|
||||
|
Loading…
Reference in New Issue
Block a user