7f5b839524
`selectVersion ./foo "bar"' instead of `import ./foo/bar.nix'. * Replaced `with args' with formal function arguments in several packages. * Renamed several files to `default.nix'. As a general rule, version numbers should only be included in the filename when there is a reason to keep multiple versions of a package in Nixpkgs. Otherwise, it just makes it harder to update the package. svn path=/nixpkgs/trunk/; revision=18403
18 lines
404 B
Nix
18 lines
404 B
Nix
args: with args;
|
|
rec{
|
|
src = fetchurl {
|
|
url = http://downloads.sourceforge.net/linuxlibertine/LinLibertineFont-2.7.tgz;
|
|
sha256 = "06xm3np2xx41fr2yc00q0z2qy9s6p860f18ns1f1f00vi54dm4c5";
|
|
};
|
|
|
|
buildInputs = [];
|
|
phaseNames = ["doUnpack" "installFonts"];
|
|
|
|
name = "linux-libertine-2.7";
|
|
meta = {
|
|
description = "Linux Libertine Fonts";
|
|
homepage = http://linuxlibertine.sf.net;
|
|
};
|
|
}
|
|
|