depot/third_party/nixpkgs/pkgs/tools/filesystems/ssdfs-utils/default.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

47 lines
953 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.45";
src = fetchFromGitHub {
owner = "dubeyko";
repo = "ssdfs-tools";
rev = "f78ebf2a19eb338ae6858aa4f28133b117507df7";
hash = "sha256-RKVcXZakYDd7Vfd1w0pNs9/oMRzvzRr8VabpUBRcKc8=";
};
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;
};
}