nixpkgs/pkgs/tools/misc/licensor/default.nix

29 lines
822 B
Nix
Raw Normal View History

2020-03-03 22:40:33 +01:00
{ lib, rustPlatform, fetchFromGitHub, fetchpatch }:
2019-11-11 20:04:14 +01:00
rustPlatform.buildRustPackage rec {
pname = "licensor";
version = "2.1.0";
2019-11-11 20:04:14 +01:00
src = fetchFromGitHub {
owner = "raftario";
repo = pname;
rev = "v${version}";
sha256 = "0zr8hcq7crmhrdhwcclc0nap68wvg5kqn5l93ha0vn9xgjy8z11p";
2019-11-11 20:04:14 +01:00
};
2020-03-03 22:40:33 +01:00
patches = [ (fetchpatch {
url = "https://github.com/raftario/licensor/commit/77ae1ea6d9b6de999ee7590d9dbd3c8465d70bb6.patch";
sha256 = "0kfyg06wa2v7swm7hs9kkazjg34mircd4nm4qmljyzjh2yh8icg3";
})];
cargoSha256 = "1z2r8nfizifj8sk1ghppyqk5r65sgmbk47fiq95pnwpadm5drvqa";
2019-11-11 20:04:14 +01:00
meta = with lib; {
description = "Write licenses to stdout";
homepage = "https://github.com/raftario/licensor";
license = licenses.mit;
maintainers = with maintainers; [ filalex77 ];
platforms = platforms.all;
};
}