depot/third_party/nixpkgs/pkgs/tools/misc/lice/default.nix
Default email d6cfb865ad Project import generated by Copybara.
GitOrigin-RevId: 5265d49a36bb5a18c85e6817b338b456acc3b8cc
2020-10-18 20:13:06 -04:00

24 lines
596 B
Nix

{ stdenv, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonPackage rec {
version = "0.4";
name = "lice-${version}";
src = fetchFromGitHub {
owner = "licenses";
repo = "lice";
rev = version;
sha256 = "0yxf70fi8ds3hmwjply2815k466r99k8n22r0ppfhwjvp3rn60qx";
fetchSubmodules = true;
};
meta = with stdenv.lib; {
description = "Print license based on selection and user options";
homepage = "https://github.com/licenses/lice";
license = licenses.bsd3;
maintainers = with maintainers; [ swflint ];
platforms = platforms.unix;
};
}