Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 25 lines 660 B view raw
1{ fetchFromGitHub, rustPlatform, stdenv }: 2 3with rustPlatform; 4 5buildRustPackage rec { 6 name = "clog-cli-${version}"; 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 = "1pi8fh6vz6m5hr38wm0v0hxp1yxm1ma8yzish3b78zkv8f90kmv0"; 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.linux; 23 maintainers = [stdenv.lib.maintainers.nthorne]; 24 }; 25}