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

                                      







                                                                    
                                   

           
                                             
                                                     
                                       

                                                       

    
{ stdenv, fetchurl, pkgconfig, fuse }:

stdenv.mkDerivation {
  name = "afuse-0.2";

  src = fetchurl {
    url = mirror://sourceforge/afuse/0.2/afuse-0.2.tar.gz;
    sha256 = "1lj2jdks0bgwxbjqp5a9f7qdry19kar6pg7dh1ml98gapx9siylj";
  };

  buildInputs = [ pkgconfig fuse ];

  meta = { 
    description = "Automounter in userspace";
    homepage = http://sourceforge.net/projects/afuse;
    license = stdenv.lib.licenses.gpl2;
    maintainers = [ stdenv.lib.maintainers.marcweber ];
    platforms = stdenv.lib.platforms.linux;
  };
}