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
41 lines
708 B
Nix
41 lines
708 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
parted,
|
|
util-linux,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.1.0";
|
|
pname = "fatresize";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ya-mouse";
|
|
repo = "fatresize";
|
|
rev = "v${version}";
|
|
sha256 = "1vhz84kxfyl0q7mkqn68nvzzly0a4xgzv76m6db0bk7xyczv1qr2";
|
|
};
|
|
|
|
buildInputs = [
|
|
parted
|
|
util-linux
|
|
];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
propagatedBuildInputs = [
|
|
parted
|
|
util-linux
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "FAT16/FAT32 non-destructive resizer";
|
|
homepage = "https://github.com/ya-mouse/fatresize";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl3;
|
|
mainProgram = "fatresize";
|
|
};
|
|
}
|