edwin: init at 0.52
This commit is contained in:
parent
829b074ee0
commit
ae0a3fb42c
2 changed files with 31 additions and 0 deletions
29
pkgs/data/fonts/edwin/default.nix
Normal file
29
pkgs/data/fonts/edwin/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib, fetchurl }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "0.52";
|
||||||
|
in fetchurl {
|
||||||
|
name = "edwin-${version}";
|
||||||
|
|
||||||
|
url = "https://github.com/MuseScoreFonts/Edwin/archive/refs/tags/v${version}.tar.gz";
|
||||||
|
|
||||||
|
downloadToTemp = true;
|
||||||
|
|
||||||
|
recursiveHash = true;
|
||||||
|
|
||||||
|
sha256 = "sha256-e0ADK72ECl+QMvLWtFJfeHBmuEwzr9M+Kqvkd5Z2mmo=";
|
||||||
|
|
||||||
|
postFetch = ''
|
||||||
|
tar xzf $downloadedFile
|
||||||
|
mkdir -p $out/share/fonts/opentype
|
||||||
|
install Edwin-${version}/*.otf $out/share/fonts/opentype
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A text font for musical scores";
|
||||||
|
homepage = "https://github.com/MuseScoreFonts/Edwin";
|
||||||
|
license = licenses.ofl;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ fortuneteller2k ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -409,6 +409,8 @@ in
|
||||||
|
|
||||||
ebook2cw = callPackage ../applications/radio/ebook2cw { };
|
ebook2cw = callPackage ../applications/radio/ebook2cw { };
|
||||||
|
|
||||||
|
edwin = callPackage ../data/fonts/edwin { };
|
||||||
|
|
||||||
etBook = callPackage ../data/fonts/et-book { };
|
etBook = callPackage ../data/fonts/et-book { };
|
||||||
|
|
||||||
fetchutils = callPackage ../tools/misc/fetchutils { };
|
fetchutils = callPackage ../tools/misc/fetchutils { };
|
||||||
|
|
Loading…
Reference in a new issue