nixpkgs/pkgs/development/tools/gen-license/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

29 lines
664 B
Nix

{ 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";
mainProgram = "gen-license";
homepage = "https://github.com/nexxeln/license-generator";
license = licenses.mit;
maintainers = [ maintainers.ryanccn ];
};
}