Merge pull request #73240 from filalex77/licensor-2.0.0
licensor: init at 2.0.0
This commit is contained in:
commit
79302a8d36
2 changed files with 25 additions and 0 deletions
23
pkgs/tools/misc/licensor/default.nix
Normal file
23
pkgs/tools/misc/licensor/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "licensor";
|
||||
version = "2.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "raftario";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0bb6q3jpzdygjcs3apl38zzmgkn22ya5wxlqgmlp0cybqbhpi20s";
|
||||
};
|
||||
|
||||
cargoSha256 = "1cvwyj2043vi5905n5126ikwbs3flfgzqkzjnzha0h8in8p3skv1";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Write licenses to stdout";
|
||||
homepage = "https://github.com/raftario/licensor";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ filalex77 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -4391,6 +4391,8 @@ in
|
|||
|
||||
libsmi = callPackage ../development/libraries/libsmi { };
|
||||
|
||||
licensor = callPackage ../tools/misc/licensor { };
|
||||
|
||||
lesspipe = callPackage ../tools/misc/lesspipe { };
|
||||
|
||||
liquidsoap = callPackage ../tools/audio/liquidsoap/full.nix {
|
||||
|
|
Loading…
Reference in a new issue