about summary refs log tree commit diff
path: root/pkgs/development/compilers/blueprint/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/blueprint/default.nix')
-rw-r--r--pkgs/development/compilers/blueprint/default.nix73
1 files changed, 0 insertions, 73 deletions
diff --git a/pkgs/development/compilers/blueprint/default.nix b/pkgs/development/compilers/blueprint/default.nix
deleted file mode 100644
index 5c1aa1b2a2cd..000000000000
--- a/pkgs/development/compilers/blueprint/default.nix
+++ /dev/null
@@ -1,73 +0,0 @@
-{ dbus
-, fetchFromGitLab
-, gobject-introspection
-, lib
-, libadwaita
-, meson
-, ninja
-, python3
-, stdenv
-, testers
-, xvfb-run
-}:
-stdenv.mkDerivation (finalAttrs: {
-  pname = "blueprint-compiler";
-  version = "0.12.0";
-
-  src = fetchFromGitLab {
-    domain = "gitlab.gnome.org";
-    owner = "jwestman";
-    repo = "blueprint-compiler";
-    rev = "v${finalAttrs.version}";
-    hash = "sha256-pvYSFCiYynH3E6QOTu4RfG+6eucq++yiRu75qucSlZU=";
-  };
-
-  nativeBuildInputs = [
-    meson
-    ninja
-  ];
-
-  buildInputs = [
-    libadwaita
-    (python3.withPackages (ps: with ps; [
-      pygobject3
-    ]))
-  ];
-
-  propagatedBuildInputs = [
-    # For setup hook, so that the compiler can find typelib files
-    gobject-introspection
-  ];
-
-  nativeCheckInputs = [
-    dbus
-    xvfb-run
-  ];
-
-  # requires xvfb-run
-  doCheck = !stdenv.isDarwin
-  && false;  # tests time out
-
-  checkPhase = ''
-    runHook preCheck
-
-    xvfb-run dbus-run-session \
-      --config-file=${dbus}/share/dbus-1/session.conf \
-      meson test --no-rebuild --print-errorlogs
-
-    runHook postCheck
-  '';
-
-  passthru.tests.version = testers.testVersion {
-    package = finalAttrs.finalPackage;
-  };
-
-  meta = with lib; {
-    description = "Markup language for GTK user interface files";
-    mainProgram = "blueprint-compiler";
-    homepage = "https://gitlab.gnome.org/jwestman/blueprint-compiler";
-    license = licenses.lgpl3Plus;
-    maintainers = with maintainers; [ benediktbroich ranfdev ];
-    platforms = platforms.unix;
-  };
-})