lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 35 lines 696 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "mkcert"; 9 version = "1.4.4"; 10 11 src = fetchFromGitHub { 12 owner = "FiloSottile"; 13 repo = "mkcert"; 14 rev = "v${version}"; 15 sha256 = "sha256-FMAXjRL+kJ/hwGmaWBy8ecON+JCMgRytfpryeLWsSVc="; 16 }; 17 18 vendorHash = "sha256-DdA7s+N5S1ivwUgZ+M2W/HCp/7neeoqRQL0umn3m6Do="; 19 20 doCheck = false; 21 22 ldflags = [ 23 "-s" 24 "-w" 25 "-X main.Version=v${version}" 26 ]; 27 28 meta = with lib; { 29 homepage = "https://github.com/FiloSottile/mkcert"; 30 description = "Simple tool for making locally-trusted development certificates"; 31 mainProgram = "mkcert"; 32 license = licenses.bsd3; 33 maintainers = [ ]; 34 }; 35}