Winter a19cd4ffb1 Revert "treewide: replace rev with tag"
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253.

This wasn't tested for correctness with something like fodwatch [0],
and should not have been (self-)merged so quickly, especially without
further review.

It also resulted in the breakage of at least one package [1] (and that's
the one we know of and was caught).

A few packages that were updated in between this commit and this revert
were not reverted back to using `rev`, but other than that, this is a
1:1 revert.

[0]: https://codeberg.org/raphaelr/fodwatch
[1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
2025-04-08 02:57:25 -04:00

64 lines
1.5 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
pkg-config,
curl,
openssl,
fuse,
libxml2,
json_c,
file,
}:
stdenv.mkDerivation rec {
pname = "hubicfuse";
version = "3.0.1";
src = fetchFromGitHub {
owner = "TurboGit";
repo = "hubicfuse";
rev = "v${version}";
sha256 = "1x988hfffxgvqxh083pv3lj5031fz03sbgiiwrjpaiywfbhm8ffr";
};
patches = [
# Fix Darwin build
# https://github.com/TurboGit/hubicfuse/pull/159
(fetchpatch {
url = "https://github.com/TurboGit/hubicfuse/commit/b460f40d86bc281a21379158a7534dfb9f283786.patch";
sha256 = "0nqvcbrgbc5dms8fkz3brlj40yn48p36drabrnc26gvb3hydh5dl";
})
# UPstream fix for build failure on -fno-common toolchains
(fetchpatch {
name = "fno-common.patch";
url = "https://github.com/TurboGit/hubicfuse/commit/34a6c3e57467b5f7e9befe2171bf4292893c5a18.patch";
sha256 = "0k1jz2h8sdhmi0srx0adbyrcrm57j4annj84yw6hdrly5hsf7bzc";
})
];
nativeBuildInputs = [ pkg-config ];
buildInputs = [
curl
openssl
fuse
libxml2
json_c
file
];
postInstall = ''
install hubic_token $out/bin
mkdir -p $out/sbin
ln -sf $out/bin/hubicfuse $out/sbin/mount.hubicfuse
'';
meta = with lib; {
homepage = "https://github.com/TurboGit/hubicfuse";
description = "FUSE-based filesystem to access hubic cloud storage";
platforms = platforms.unix;
license = licenses.mit;
maintainers = [ maintainers.jpierre03 ];
};
}