tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
overpass: 3.0.4 -> 3.0.5
Mario Rodas
4 years ago
2451e7b2
707f6106
+7
-5
1 changed file
expand all
collapse all
unified
split
pkgs
data
fonts
overpass
default.nix
+7
-5
pkgs/data/fonts/overpass/default.nix
···
1
{ lib, fetchzip }:
2
3
let
4
-
version = "3.0.4";
5
in fetchzip rec {
6
name = "overpass-${version}";
7
8
-
url = "https://github.com/RedHatBrand/Overpass/archive/${version}.zip";
9
10
postFetch = ''
11
-
mkdir -p $out/share/fonts/opentype ; unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
12
-
mkdir -p $out/share/doc/${name} ; unzip -j $downloadedFile \*.md -d $out/share/doc/${name}
0
0
13
'';
14
15
-
sha256 = "13b4yam0nycclccxidzj2fa3nwms5qji7gfkixdnl4ybf0f56b64";
16
17
meta = with lib; {
18
homepage = "https://overpassfont.org/";
···
1
{ lib, fetchzip }:
2
3
let
4
+
version = "3.0.5";
5
in fetchzip rec {
6
name = "overpass-${version}";
7
8
+
url = "https://github.com/RedHatOfficial/Overpass/releases/download/v${version}/overpass-${version}.zip";
9
10
postFetch = ''
11
+
mkdir -p $out/share/fonts $out/share/doc
12
+
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
13
+
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
14
+
unzip -j $downloadedFile \*.md -d $out/share/doc/${name}
15
'';
16
17
+
sha256 = "1fpyhd6x3i3g0xxjmyfnjsri1kkvci15fv7jp1bnza7k0hz0bnha";
18
19
meta = with lib; {
20
homepage = "https://overpassfont.org/";