3
0
Fork 0
forked from mirrors/nixpkgs

license-generator: init at 0.8.1

This commit is contained in:
Loïc Reynier 2022-03-15 14:09:20 +01:00
parent 9c0dd18492
commit 7dad451cdb
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ lib, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "license-generator";
version = "0.8.1";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-ZVhsbaJJ9WBcQPx2yikIAQJeBXwC6ZAJkfCRmokNV3I=";
};
cargoSha256 = "sha256-Yh9q/aYHXUF2eIFpJ7ccgeyIO5mQMgRDCNr+ZyS166Y=";
meta = with lib; {
description = "A command-line tool for generating license files.";
homepage = "https://github.com/azu/license-generator";
license = licenses.mit;
maintainers = with maintainers; [ loicreynier ];
};
}

View file

@ -1084,6 +1084,8 @@ with pkgs;
ksnip = libsForQt5.callPackage ../tools/misc/ksnip { };
license-generator = callPackage ../tools/misc/license-generator { };
linux-router = callPackage ../tools/networking/linux-router { };
linux-router-without-wifi = linux-router.override { useWifiDependencies = false; };