nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at devShellTools-shell 43 lines 876 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 fuse, 6 samba, 7 pkg-config, 8 glib, 9 autoconf, 10 attr, 11 libsecret, 12}: 13 14stdenv.mkDerivation rec { 15 pname = "smbnetfs"; 16 version = "0.6.3"; 17 src = fetchurl { 18 url = "mirror://sourceforge/project/smbnetfs/smbnetfs/SMBNetFS-${version}/${pname}-${version}.tar.bz2"; 19 sha256 = "sha256-6sN7l2n76cP0uvPrZMYaa1mtTyqgXf3culoaxK301WA="; 20 }; 21 22 nativeBuildInputs = [ 23 pkg-config 24 autoconf 25 ]; 26 buildInputs = [ 27 fuse 28 samba 29 glib 30 attr 31 libsecret 32 ]; 33 34 meta = with lib; { 35 description = "FUSE FS for mounting Samba shares"; 36 maintainers = with maintainers; [ raskin ]; 37 platforms = platforms.linux; 38 license = licenses.gpl2Only; 39 downloadPage = "https://sourceforge.net/projects/smbnetfs/files/smbnetfs"; 40 homepage = "https://sourceforge.net/projects/smbnetfs/"; 41 mainProgram = "smbnetfs"; 42 }; 43}