Skip to content

Commit

Permalink
libertinus: 7.040 → 7.051 (#344345)
Browse files Browse the repository at this point in the history
  • Loading branch information
vbgl authored Oct 2, 2024
1 parent 1b61c3a commit 5a8e34e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkgs/data/fonts/libertinus/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{ lib, stdenvNoCC, fetchurl }:
{ lib, stdenvNoCC, fetchurl, zstd }:

stdenvNoCC.mkDerivation rec {
pname = "libertinus";
version = "7.040";
version = "7.051";

src = fetchurl {
url = "https://github.com/alerque/libertinus/releases/download/v${version}/Libertinus-${version}.tar.xz";
hash = "sha256-f+nwInItHBzGfcLCihELO7VbrjV1GWFg0kIsiTM7OFA=";
url = "https://github.com/alerque/libertinus/releases/download/v${version}/Libertinus-${version}.tar.zst";
hash = "sha256-JQZ3ySnTd1owkTZDWUN5ryZKwu8oAQNaody+MLm+I6Y=";
};

nativeBuildInputs = [ zstd ];

installPhase = ''
runHook preInstall
Expand Down

0 comments on commit 5a8e34e

Please sign in to comment.