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
49 lines
962 B
Nix
49 lines
962 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
libtool,
|
|
libuuid,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
# The files and commit messages in the repository refer to the package
|
|
# as ssdfs-utils, not ssdfs-tools.
|
|
pname = "ssdfs-utils";
|
|
# The version is taken from `configure.ac`, there are no tags.
|
|
version = "4.64";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dubeyko";
|
|
repo = "ssdfs-tools";
|
|
rev = "46ef1ea7baa81fb009b4010700a9e00c39fb61a8";
|
|
hash = "sha256-ky0+UKqIF37tf0drNRvdi116VZsgUn2HedPeKuitHLg=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
libtool
|
|
libuuid
|
|
zlib
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = ./update.sh;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "SSDFS file system utilities";
|
|
homepage = "https://github.com/dubeyko/ssdfs-tools";
|
|
license = licenses.bsd3Clear;
|
|
maintainers = with maintainers; [ ners ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|