biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / filesystems / ssdfs-utils / default.nix
blob38efbad0f2c390462ee9abf6b469aa6a649fc440
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , autoreconfHook
5 , libtool
6 , libuuid
7 , zlib
8 }:
10 stdenv.mkDerivation {
11   # The files and commit messages in the repository refer to the package
12   # as ssdfs-utils, not ssdfs-tools.
13   pname = "ssdfs-utils";
14   # The version is taken from `configure.ac`, there are no tags.
15   version = "4.46";
17   src = fetchFromGitHub {
18     owner = "dubeyko";
19     repo = "ssdfs-tools";
20     rev = "7528ee1d923115c1536d97b119fd2a0ee978b59e";
21     hash = "sha256-SL5BY+vLxRWRHkIp0hTQsi3w/fXRGe4OHpaapZFZBZo=";
22   };
24   strictDeps = true;
26   nativeBuildInputs = [
27     autoreconfHook
28   ];
30   buildInputs = [
31     libtool
32     libuuid
33     zlib
34   ];
36   passthru = {
37     updateScript = ./update.sh;
38   };
40   meta = with lib; {
41     description = "SSDFS file system utilities";
42     homepage = "https://github.com/dubeyko/ssdfs-tools";
43     license = licenses.bsd3Clear;
44     maintainers = with maintainers; [ ners ];
45     platforms = platforms.linux;
46   };