nixpkgs/pkgs/os-specific/linux/afuse/default.nix
Eelco Dolstra 6609710409 * Get rid of many instances of "args: with args;", and other coding
guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
2010-07-28 11:55:54 +00:00

22 lines
519 B
Nix

{ 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 = "GPL-v2";
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}