* 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
This commit is contained in:
Eelco Dolstra
2010-07-28 11:55:54 +00:00
parent b4a3f99c78
commit 6609710409
132 changed files with 925 additions and 958 deletions
+6 -9
View File
@@ -1,4 +1,5 @@
args: with args;
{ stdenv, fetchurl, pkgconfig, fuse }:
stdenv.mkDerivation {
name = "afuse-0.2";
@@ -7,18 +8,14 @@ stdenv.mkDerivation {
sha256 = "1lj2jdks0bgwxbjqp5a9f7qdry19kar6pg7dh1ml98gapx9siylj";
};
buildInputs = [pkgconfig fuse];
buildInputs = [ pkgconfig fuse ];
meta = {
description = "automounting in userspace. Allows easy access to ssh-agent etc";
longDesc = ''
Example: (automunt using sshfs by accessing ~/sshfs/[user@]domain
afuse -o mount_template="sshfs %r:/ %m" -o unmount_template="fusermount -u -z %m" ~/sshfs/
'';
description = "Automounter in userspace";
homepage = http://sourceforge.net/projects/afuse;
license = "GPL-v2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}