1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 12:11:28 +00:00

norwester-font: init at 1.2

This commit is contained in:
Michiel Leenaars 2016-06-30 09:44:22 +02:00
parent 0967b0d303
commit 969433f229
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ 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;
};
}

View file

@ -16755,6 +16755,8 @@ in
nixos-artwork = callPackage ../data/misc/nixos-artwork { };
norwester-font = callPackage ../data/fonts/norwester {};
nut = callPackage ../applications/misc/nut { };
solfege = callPackage ../misc/solfege {