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:
parent
255a4a91f0
commit
d3f5d94ac7
|
@ -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"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue