nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 25 lines 649 B view raw
1{ fetchFromGitHub, rustPlatform, stdenv }: 2 3with rustPlatform; 4 5buildRustPackage rec { 6 pname = "clog-cli"; 7 version = "0.9.3"; 8 9 src = fetchFromGitHub { 10 owner = "clog-tool"; 11 repo = "clog-cli"; 12 rev = "v${version}"; 13 sha256 = "1wxglc4n1dar5qphhj5pab7ps34cjr7jy611fwn72lz0f6c7jp3z"; 14 }; 15 16 cargoSha256 = "1i1aq7bwkx8sqrlpxq24ldh908j72lwi2r3sg9zaz5p8xq1xgq6p"; 17 18 meta = { 19 description = "Generate changelogs from local git metadata"; 20 homepage = https://github.com/clog-tool/clog-cli; 21 license = stdenv.lib.licenses.mit; 22 platforms = stdenv.lib.platforms.unix; 23 maintainers = [stdenv.lib.maintainers.nthorne]; 24 }; 25}