nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 27 lines 609 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 buildGoModule, 5}: 6 7buildGoModule rec { 8 pname = "meteor-git"; 9 version = "0.30.0"; 10 11 src = fetchFromGitHub { 12 owner = "stefanlogue"; 13 repo = "meteor"; 14 rev = "v${version}"; 15 hash = "sha256-oqfJDIT+4n9ySwmN5DoTvAcEY9wmI/bhVSYFHudMwl0="; 16 }; 17 18 vendorHash = "sha256-jKd/eJwp5SZvTrP3RN7xT7ibAB0PQondGR3RT+HQXIo="; 19 20 meta = { 21 description = "CLI tool for writing conventional commits"; 22 mainProgram = "meteor"; 23 homepage = "https://github.com/stefanlogue/meteor"; 24 license = lib.licenses.mit; 25 maintainers = with lib.maintainers; [ nebunebu ]; 26 }; 27}