barlow: move 404ing src to github (#472748)

This commit is contained in:
Aleksana
2025-12-21 11:12:16 +00:00
committed by GitHub
+6 -5
View File
@@ -1,17 +1,18 @@
{
lib,
stdenvNoCC,
fetchzip,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation rec {
pname = "barlow";
version = "1.422";
src = fetchzip {
url = "https://tribby.com/fonts/barlow/download/barlow-${version}.zip";
stripRoot = false;
hash = "sha256-aHAGPEgBkH41r7HR0D74OGCa7ta7Uo8Mgq4YVtYOwU8=";
src = fetchFromGitHub {
owner = "jpt";
repo = "barlow";
tag = "${version}";
hash = "sha256-FG68o6qN/296RhSNDHFXYXbkhlXSZJgGhVjzlJqsksY=";
};
installPhase = ''