summary refs log blame commit diff
path: root/pkgs/os-specific/linux/fuse/default.nix
blob: bd2507ec1bc1cd93c01b5320363a930717610ac3 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                
 
                         
                      
  
                         
  
                  
                                                     
                                                                    
    


                                             
                              

                    




                                                                                                      
 
{ stdenv, fetchurl, utillinux }:

stdenv.mkDerivation rec {
  name = "fuse-2.9.2";
  
  builder = ./builder.sh;
  
  src = fetchurl {
    url = "mirror://sourceforge/fuse/${name}.tar.gz";
    sha256 = "1z6fg593hy1j7mynhckx43gqkkg2nwpmwwv860337nl77zxji9w1";
  };
  
  configureFlags = "--disable-kernel-module";
  
  buildInputs = [ utillinux ];
  
  inherit utillinux;

  meta = {
    homepage = http://fuse.sourceforge.net/;
    description = "Kernel module and library that allows filesystems to be implemented in user space";
  };
}