Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
865 B
Nix
40 lines
865 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
zig_0_13,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "zigimports";
|
|
version = "0.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tusharsadhwani";
|
|
repo = "zigimports";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-2cri+5mhhTQqlkv9db/3CQ3rCMq4yW4drMoRTZBhndE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
zig_0_13.hook
|
|
];
|
|
|
|
# Remove the system suffix on the program name.
|
|
postInstall = ''
|
|
mv $out/bin/zigimports{*,}
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Automatically remove unused imports and globals from Zig files";
|
|
homepage = "https://github.com/tusharsadhwani/zigimports";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.jmbaur ];
|
|
mainProgram = "zigimports";
|
|
inherit (zig_0_13.meta) platforms;
|
|
};
|
|
})
|