nixpkgs/pkgs/development/tools/misc/mkcert/default.nix

23 lines
569 B
Nix
Raw Normal View History

2019-09-21 02:25:00 -07:00
{ lib, buildGoPackage, fetchFromGitHub }:
2019-04-13 19:09:09 -07:00
2019-09-21 02:25:00 -07:00
buildGoPackage rec {
2019-04-13 19:09:09 -07:00
pname = "mkcert";
version = "1.4.0";
2019-04-13 19:09:09 -07:00
src = fetchFromGitHub {
owner = "FiloSottile";
repo = pname;
rev = "v${version}";
sha256 = "0xcmvzh5lq8vs3b0f1zw645fxdr8471v7prl1656q02v38f58ly7";
2019-04-13 19:09:09 -07:00
};
2019-09-21 02:25:00 -07:00
goPackagePath = "github.com/FiloSottile/mkcert";
2019-04-13 19:09:09 -07:00
meta = with lib; {
homepage = https://github.com/FiloSottile/mkcert;
description = "A simple tool for making locally-trusted development certificates";
license = licenses.bsd3;
maintainers = [ maintainers.marsam ];
};
}