4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
29 lines
936 B
Nix
29 lines
936 B
Nix
{ lib, stdenv, fetchurl, fuse, samba, pkgconfig, glib, autoconf, attr, libsecret }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "smbnetfs";
|
|
version = "0.6.2";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/smbnetfs/smbnetfs/SMBNetFS-${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "19x9978k90w9a65lrpsphk7swsq8zkws9jc27q4zbndrm0r2snr0";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig autoconf ];
|
|
buildInputs = [ fuse samba glib attr libsecret ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/function.c --replace "attr/xattr.h" "sys/xattr.h"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A FUSE FS for mounting Samba shares";
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
downloadPage = "https://sourceforge.net/projects/smbnetfs/files/smbnetfs";
|
|
updateWalker = true;
|
|
inherit version;
|
|
homepage = "https://sourceforge.net/projects/smbnetfs/";
|
|
};
|
|
}
|