Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 29 lines 564 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "round"; 9 version = "0.0.2"; 10 11 src = fetchFromGitHub { 12 owner = "mingrammer"; 13 repo = "round"; 14 rev = "v${version}"; 15 hash = "sha256-vP2q0inU5zNJ/eiAqEzwHSqril8hTtpbpNBiAkeWeSU="; 16 }; 17 18 vendorHash = null; 19 20 subPackages = [ "." ]; 21 22 meta = with lib; { 23 description = "Round image corners from CLI"; 24 homepage = "https://github.com/mingrammer/round"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ addict3d ]; 27 mainProgram = "round"; 28 }; 29}