nixpkgs/pkgs/development/tools/deadnix/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
593 B
Nix
Raw Normal View History

2022-01-14 22:26:08 +03:00
{ lib
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "deadnix";
2022-04-08 03:14:11 +03:00
version = "0.1.5";
2022-01-14 22:26:08 +03:00
src = fetchFromGitHub {
owner = "astro";
repo = "deadnix";
rev = "v${version}";
2022-04-08 03:14:11 +03:00
sha256 = "1fyagp6m6adwfcisi1zvs5dflcvrmpx4q1fr8pqzb93zv4m3ar84";
2022-01-14 22:26:08 +03:00
};
2022-04-08 03:14:11 +03:00
cargoSha256 = "102akpvs2hvf5hl9rh5cspxzqly68wk7qhx0g1zhfp1ka58gnr4p";
2022-01-14 22:26:08 +03:00
meta = with lib; {
description = "Find and remove unused code in .nix source files";
homepage = "https://github.com/astro/deadnix";
license = licenses.gpl3Only;
maintainers = with maintainers; [ astro ];
};
}