3
0
Fork 0
forked from mirrors/nixpkgs

gen-license: init at 0.1.2

This commit is contained in:
Ryan Cao 2023-07-24 08:19:00 +08:00
parent 12ecdc253b
commit 6068a73e5f
No known key found for this signature in database
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, stdenv
, rustPlatform
, fetchCrate
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "gen-license";
version = "0.1.2";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-YZcycLQ436cjr2YTT7TEyMdeLTOl9oEfa5x3lgnnYyo=";
};
cargoHash = "sha256-2PT20eoXxBPhGsmHlEEGE2ZDyhyrD7tFdwnn3khjKNo=";
buildInputs = lib.optional stdenv.isDarwin Security;
meta = with lib; {
description = "Create licenses for your projects right from your terminal";
homepage = "https://github.com/nexxeln/license-generator";
license = licenses.mit;
maintainers = [ ];
};
}

View file

@ -1671,6 +1671,10 @@ with pkgs;
gen6dns = callPackage ../tools/networking/gen6dns { };
gen-license = callPackage ../development/tools/gen-license {
inherit (darwin.apple_sdk.frameworks) Security;
};
github-copilot-cli = callPackage ../tools/misc/github-copilot-cli { };
gfshare = callPackage ../tools/security/gfshare { };