uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
22
pkgs/tools/filesystems/smbnetfs/default.nix
Normal file
22
pkgs/tools/filesystems/smbnetfs/default.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ 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 = "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";
|
||||
homepage = "https://sourceforge.net/projects/smbnetfs/";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue