summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/blueprint
diff options
context:
space:
mode:
authorPavel Sobolev <paveloom@riseup.net>2023-07-22 13:54:23 +0300
committerPavel Sobolev <paveloom@riseup.net>2023-07-22 13:54:23 +0300
commitd9543048920d344b0762e2772c547ccab1bf6b86 (patch)
treef5abfe0b0d183f340d294e3cb9a4663eeec83b8e /pkgs/development/compilers/blueprint
parent4fe0dfd1ea244116d4b08b7e67fd61e718bf1ccf (diff)
blueprint-compiler: 0.8.1 -> 0.10.0
Diffstat (limited to 'pkgs/development/compilers/blueprint')
-rw-r--r--pkgs/development/compilers/blueprint/default.nix21
1 files changed, 4 insertions, 17 deletions
diff --git a/pkgs/development/compilers/blueprint/default.nix b/pkgs/development/compilers/blueprint/default.nix
index d75d4eeeef16..1e5dea00f4c4 100644
--- a/pkgs/development/compilers/blueprint/default.nix
+++ b/pkgs/development/compilers/blueprint/default.nix
@@ -1,10 +1,8 @@
{ dbus
, fetchFromGitLab
, gobject-introspection
-, gtk4
, lib
, libadwaita
-, makeFontsConf
, meson
, ninja
, python3
@@ -14,14 +12,14 @@
}:
stdenv.mkDerivation (finalAttrs: {
pname = "blueprint-compiler";
- version = "0.8.1";
+ version = "0.10.0";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "jwestman";
repo = "blueprint-compiler";
rev = "v${finalAttrs.version}";
- hash = "sha256-3lj9BMN5aNujbhhZjObdTOCQfH5ERQCgGqIAw5eZIQc=";
+ hash = "sha256-pPrQc2ID84N+50j/A6VAJAOK+D1hjaokhFckOnOaeTw=";
};
nativeBuildInputs = [
@@ -42,23 +40,12 @@ stdenv.mkDerivation (finalAttrs: {
];
nativeCheckInputs = [
- xvfb-run
dbus
- gtk4
+ xvfb-run
];
- env = {
- # Fontconfig error: Cannot load default config file: No such file: (null)
- FONTCONFIG_FILE = makeFontsConf { fontDirectories = [ ]; };
- };
-
doCheck = true;
- preBuild = ''
- # Fontconfig error: No writable cache directories
- export XDG_CACHE_HOME="$(mktemp -d)"
- '';
-
checkPhase = ''
runHook preCheck
@@ -77,7 +64,7 @@ stdenv.mkDerivation (finalAttrs: {
description = "A markup language for GTK user interface files";
homepage = "https://gitlab.gnome.org/jwestman/blueprint-compiler";
license = licenses.lgpl3Plus;
- maintainers = with maintainers; [ benediktbroich ranfdev ];
+ maintainers = with maintainers; [ benediktbroich paveloom ranfdev ];
platforms = platforms.linux;
};
})