Grimmauld
2025-04-12 11:24:52 +02:00
parent aadbacdf42
commit 857e8f4c6c
+11 -9
View File
@@ -1,7 +1,7 @@
{
lib,
stdenv,
fetchurl,
fetchFromGitHub,
pkg-config,
python3,
xmlbird,
@@ -10,7 +10,7 @@
libgee,
glib,
gtk3,
webkitgtk_4_0,
webkitgtk_4_1,
libnotify,
sqlite,
vala,
@@ -20,13 +20,15 @@
autoPatchelfHook,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "birdfont";
version = "2.33.3";
version = "2.33.6";
src = fetchurl {
url = "https://birdfont.org/releases/birdfont-${version}.tar.xz";
sha256 = "sha256-NNw7203BtHhNyyQezb3/EP98cTsu7ABDFBnM5Ms2ePY=";
src = fetchFromGitHub {
owner = "johanmattssonm";
repo = "birdfont";
tag = "v${finalAttrs.version}";
sha256 = "sha256-7xVjY/yH7pMlUBpQc5Gb4t4My24Mx5KkARVp2KSr+Iw=";
};
nativeBuildInputs = [
@@ -44,7 +46,7 @@ stdenv.mkDerivation rec {
gdk-pixbuf
glib
gtk3
webkitgtk_4_0
webkitgtk_4_1
libnotify
sqlite
gsettings-desktop-schemas
@@ -67,4 +69,4 @@ stdenv.mkDerivation rec {
license = licenses.gpl3;
maintainers = with maintainers; [ dtzWill ];
};
}
})