Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ fetchFromGitHub, rustPlatform, lib }: 2 3rustPlatform.buildRustPackage rec { 4 pname = "clog-cli"; 5 version = "0.9.3"; 6 7 src = fetchFromGitHub { 8 owner = "clog-tool"; 9 repo = "clog-cli"; 10 rev = "v${version}"; 11 sha256 = "1wxglc4n1dar5qphhj5pab7ps34cjr7jy611fwn72lz0f6c7jp3z"; 12 }; 13 14 cargoSha256 = "0xcgzlcmlk5ycw4kklprm8lzs72j2zp8xm3dcpy606z4r9qn0c6a"; 15 16 meta = { 17 description = "Generate changelogs from local git metadata"; 18 homepage = "https://github.com/clog-tool/clog-cli"; 19 license = lib.licenses.mit; 20 platforms = lib.platforms.unix; 21 maintainers = [lib.maintainers.nthorne]; 22 mainProgram = "clog"; 23 }; 24}