nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 29 lines 562 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 = { 23 description = "CLI tool for rounding images"; 24 homepage = "https://github.com/mingrammer/round"; 25 license = lib.licenses.mit; 26 maintainers = with lib.maintainers; [ addict3d ]; 27 mainProgram = "round"; 28 }; 29}