062210bdff
A recent upgrade of cargo-vendor changed its output slightly, which broke all cargoSha256 hashes in nixpkgs. See https://github.com/NixOS/nixpkgs/issues/60668 for more information. Since then, a few hashes have been fixed in master by hand, but there were a lot still to do, so I did all of the ones left over with some scripts I wrote. The one hash I wasn’t able to update was habitat's, because it’s currently broken and the build doesn’t get far enough to produce a hash anyway.
26 lines
659 B
Nix
26 lines
659 B
Nix
{ fetchFromGitHub, rustPlatform, stdenv }:
|
|
|
|
with rustPlatform;
|
|
|
|
buildRustPackage rec {
|
|
name = "clog-cli-${version}";
|
|
version = "0.9.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "clog-tool";
|
|
repo = "clog-cli";
|
|
rev = "v${version}";
|
|
sha256 = "1wxglc4n1dar5qphhj5pab7ps34cjr7jy611fwn72lz0f6c7jp3z";
|
|
};
|
|
|
|
cargoSha256 = "1i1aq7bwkx8sqrlpxq24ldh908j72lwi2r3sg9zaz5p8xq1xgq6p";
|
|
|
|
meta = {
|
|
description = "Generate changelogs from local git metadata";
|
|
homepage = https://github.com/clog-tool/clog-cli;
|
|
license = stdenv.lib.licenses.mit;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [stdenv.lib.maintainers.nthorne];
|
|
};
|
|
}
|