3
0
Fork 0
forked from mirrors/nixpkgs

* Fix some attributes that now make nix-env -q --meta barf.

svn path=/nixpkgs/trunk/; revision=16134
This commit is contained in:
Eelco Dolstra 2009-07-02 09:08:01 +00:00
parent 255a4a91f0
commit d3f5d94ac7
3 changed files with 10 additions and 9 deletions

View file

@ -50,9 +50,10 @@ composableDerivation {} {
description = "Sample Rate Converter for audio"; description = "Sample Rate Converter for audio";
homepage = http://www.mega-nerd.com/SRC/index.html; homepage = http://www.mega-nerd.com/SRC/index.html;
# you can choose one of the following licenses: # you can choose one of the following licenses:
license = [ "GPL" license = [
{ url=http://www.mega-nerd.com/SRC/libsamplerate-cul.pdf; "GPL"
name="libsamplerate Commercial Use License"; # http://www.mega-nerd.com/SRC/libsamplerate-cul.pdf
} ]; "libsamplerate Commercial Use License"
];
}; };
} }

View file

@ -23,9 +23,10 @@ stdenv.mkDerivation {
description = "Sample Rate Converter for audio"; description = "Sample Rate Converter for audio";
homepage = http://www.mega-nerd.com/SRC/index.html; homepage = http://www.mega-nerd.com/SRC/index.html;
# you can choose one of the following licenses: # you can choose one of the following licenses:
license = [ "GPL" license = [
{ url=http://www.mega-nerd.com/SRC/libsamplerate-cul.pdf; "GPL"
name="libsamplerate Commercial Use License"; # http://www.mega-nerd.com/SRC/libsamplerate-cul.pdf
} ]; "libsamplerate Commercial Use License"
];
}; };
} }

View file

@ -76,7 +76,6 @@ rec {
name = "texlive-core-2007"; name = "texlive-core-2007";
meta = { meta = {
description = "A TeX distribution"; description = "A TeX distribution";
srcs = [texmfSrc langTexmfSrc];
}; };
} }