about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2023-05-03 16:27:38 +0100
committerGitHub <noreply@github.com>2023-05-03 16:27:38 +0100
commit566cebaf3fc0c0c6348c26c63b40daf66b2100f3 (patch)
treea9b8c7d5840b437b08429d91fb6abbfa8cd41bbb /pkgs
parentddd8b1b92dd20ee46ef40a4cbf326fd8f8593ac9 (diff)
parentbd43f6a3250e6656621d83b1e5104359aab44495 (diff)
downloadnixlib-566cebaf3fc0c0c6348c26c63b40daf66b2100f3.tar
nixlib-566cebaf3fc0c0c6348c26c63b40daf66b2100f3.tar.gz
nixlib-566cebaf3fc0c0c6348c26c63b40daf66b2100f3.tar.bz2
nixlib-566cebaf3fc0c0c6348c26c63b40daf66b2100f3.tar.lz
nixlib-566cebaf3fc0c0c6348c26c63b40daf66b2100f3.tar.xz
nixlib-566cebaf3fc0c0c6348c26c63b40daf66b2100f3.tar.zst
nixlib-566cebaf3fc0c0c6348c26c63b40daf66b2100f3.zip
Merge pull request #229557 from figsoda/cargo-llvm-lines
cargo-llvm-lines: 0.4.27 -> 0.4.28
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/rust/cargo-llvm-lines/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/cargo-llvm-lines/default.nix b/pkgs/development/tools/rust/cargo-llvm-lines/default.nix
index 3c11972d83e4..21df8e4c9ace 100644
--- a/pkgs/development/tools/rust/cargo-llvm-lines/default.nix
+++ b/pkgs/development/tools/rust/cargo-llvm-lines/default.nix
@@ -2,20 +2,21 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-llvm-lines";
-  version = "0.4.27";
+  version = "0.4.28";
 
   src = fetchFromGitHub {
     owner = "dtolnay";
     repo = pname;
     rev = version;
-    sha256 = "sha256-nojFHP3JhhJSzYeRGZKpUpNcVdMg21L+t6vTxIalsJs=";
+    hash = "sha256-ebsmQM3KLhNfBGRXosOlim+rMTg7aQu0LXL4iGr9FRQ=";
   };
 
-  cargoSha256 = "sha256-ZVi3j5FbcYYQJ5QOW1tiotiqwOjF9uv1VLHrZL0LBxc=";
+  cargoHash = "sha256-YXJfEofipN33aItuqzVZkPvszeZqLyikBoF+viQgCeM=";
 
   meta = with lib; {
     description = "Count the number of lines of LLVM IR across all instantiations of a generic function";
     homepage = "https://github.com/dtolnay/cargo-llvm-lines";
+    changelog = "https://github.com/dtolnay/cargo-llvm-lines/releases/tag/${src.rev}";
     license = with licenses; [ asl20 /* or */ mit ];
     maintainers = with maintainers; [ figsoda ];
   };