forked from mirrors/nixpkgs
license-generator: init at 0.8.1
This commit is contained in:
parent
9c0dd18492
commit
7dad451cdb
20
pkgs/tools/misc/license-generator/default.nix
Normal file
20
pkgs/tools/misc/license-generator/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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; };
|
||||
|
|
Loading…
Reference in a new issue