nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 22 lines 791 B view raw
1{ lib, stdenv, fetchurl, fuse, samba, pkg-config, glib, autoconf, attr, libsecret }: 2 3stdenv.mkDerivation rec { 4 pname = "smbnetfs"; 5 version = "0.6.3"; 6 src = fetchurl { 7 url = "mirror://sourceforge/project/smbnetfs/smbnetfs/SMBNetFS-${version}/${pname}-${version}.tar.bz2"; 8 sha256 = "sha256-6sN7l2n76cP0uvPrZMYaa1mtTyqgXf3culoaxK301WA="; 9 }; 10 11 nativeBuildInputs = [ pkg-config autoconf ]; 12 buildInputs = [ fuse samba glib attr libsecret ]; 13 14 meta = with lib; { 15 description = "A FUSE FS for mounting Samba shares"; 16 maintainers = with maintainers; [ raskin ]; 17 platforms = platforms.linux; 18 license = licenses.gpl2; 19 downloadPage = "https://sourceforge.net/projects/smbnetfs/files/smbnetfs"; 20 homepage = "https://sourceforge.net/projects/smbnetfs/"; 21 }; 22}