mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
c2904c6aa4
`lib.licenses.gpl3` and company are deprecated so we'll update them for future-proofing.
22 lines
620 B
Nix
22 lines
620 B
Nix
{ stdenv, lib, fetchgit, meson, ninja, python3Packages }:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "blueprint-compiler";
|
|
version = "2022-03-27";
|
|
|
|
src = fetchgit {
|
|
url = "https://gitlab.gnome.org/jwestman/blueprint-compiler.git";
|
|
rev = "e3a37893a8709aa3d6a571ecb5a3f690da0ef82d";
|
|
sha256 = "sha256-P9Ixbtdz4vcyz7Mpz3QVbXX0+Uy/HsNq8SSe7Fnp5ko=";
|
|
};
|
|
|
|
format = "other";
|
|
nativeBuildInputs = [ meson ninja ];
|
|
|
|
meta = with lib; {
|
|
description = "Compiles Blueprint to GTK XML";
|
|
homepage = "https://gitlab.gnome.org/jwestman/blueprint-compiler";
|
|
license = licenses.lgpl3Only;
|
|
};
|
|
}
|