include version number in name
league provides no version number, so use date
This commit is contained in:
parent
4c064b5478
commit
79c8cc4bf4
@ -1,8 +1,10 @@
|
|||||||
{stdenv, fetchurl, unzip}:
|
{stdenv, fetchurl, unzip}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gyre-fonts";
|
baseName = "gyre-fonts";
|
||||||
|
version = "2.005";
|
||||||
|
name="${baseName}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.gust.org.pl/projects/e-foundry/tex-gyre/whole/tg-2.005otf.zip";
|
url = "http://www.gust.org.pl/projects/e-foundry/tex-gyre/whole/tg-2.005otf.zip";
|
||||||
sha256 = "0kph9l3g7jb2bpmxdbdg5zl56wacmnvdvsdn7is1gc750sqvsn31";
|
sha256 = "0kph9l3g7jb2bpmxdbdg5zl56wacmnvdvsdn7is1gc750sqvsn31";
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
{stdenv, fetchurl, unzip}:
|
{stdenv, fetchurl, unzip}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "league-of-moveable-type";
|
baseName = "league-of-moveable-type";
|
||||||
|
version = "2014-12";
|
||||||
|
name="${baseName}-${version}";
|
||||||
|
|
||||||
srcs = [(fetchurl {
|
srcs = [(fetchurl {
|
||||||
url = "https://www.theleagueofmoveabletype.com/league-gothic/download";
|
url = "https://www.theleagueofmoveabletype.com/league-gothic/download";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user