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
44 lines
876 B
Nix
44 lines
876 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
fuse,
|
|
samba,
|
|
pkg-config,
|
|
glib,
|
|
autoconf,
|
|
attr,
|
|
libsecret,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "smbnetfs";
|
|
version = "0.6.3";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/smbnetfs/smbnetfs/SMBNetFS-${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-6sN7l2n76cP0uvPrZMYaa1mtTyqgXf3culoaxK301WA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
autoconf
|
|
];
|
|
buildInputs = [
|
|
fuse
|
|
samba
|
|
glib
|
|
attr
|
|
libsecret
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "FUSE FS for mounting Samba shares";
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2Only;
|
|
downloadPage = "https://sourceforge.net/projects/smbnetfs/files/smbnetfs";
|
|
homepage = "https://sourceforge.net/projects/smbnetfs/";
|
|
mainProgram = "smbnetfs";
|
|
};
|
|
}
|