* Improved a bunch of "name" attributes (mostly missing version

numbers).

svn path=/nixpkgs/trunk/; revision=17991
This commit is contained in:
Eelco Dolstra
2009-10-28 14:06:56 +00:00
parent cbfbaf736a
commit f53195f29e
19 changed files with 105 additions and 97 deletions
+7 -8
View File
@@ -1,19 +1,18 @@
args: with args;
stdenv.mkDerivation {
name = "liblo";
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "liblo-0.26";
src = fetchurl {
url = mirror://sourceforge/liblo/liblo/0.26/liblo-0.26.tar.gz;
url = "mirror://sourceforge/liblo/liblo/0.26/${name}.tar.gz";
sha256 = "0n124fv9m8yjxs2yxnp3l1i30b8qgg1zx51y63ax12hpz04zndm6";
};
buildInputs = [];
meta = {
description = "lightweight library to handle the sending and receiving of messages according to the Open Sound Control (OSC) protocol";
homepage = http://sourceforge.net/projects/liblo;
license = "GPLv2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
maintainers = [stdenv.lib.maintainers.marcweber];
platforms = stdenv.lib.platforms.linux;
};
}