f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
29 lines
764 B
Nix
29 lines
764 B
Nix
{ stdenv, fetchurl, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "norwester";
|
|
version = "1.2";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://jamiewilson.io/norwester/assets/norwester.zip";
|
|
sha256 = "0syg8ss7mpli4cbxvh3ld7qrlbhb2dfv3wchm765iw6ndc05g92d";
|
|
};
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/fonts/opentype
|
|
unzip -D -j $src ${pname}-v${version}/${pname}.otf -d $out/share/fonts/opentype/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://jamiewilson.io/norwester;
|
|
description = "A condensed geometric sans serif by Jamie Wilson";
|
|
maintainers = with maintainers; [ leenaars ];
|
|
license = licenses.ofl;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|