mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 19:07:38 +00:00
text-engine: init at 0.1.1
This commit is contained in:
parent
27a89ba43b
commit
aadb9282ec
34
pkgs/development/libraries/text-engine/default.nix
Normal file
34
pkgs/development/libraries/text-engine/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, meson
|
||||
, ninja
|
||||
, json-glib
|
||||
, gtk4
|
||||
, libxml2
|
||||
, gobject-introspection
|
||||
, pkg-config
|
||||
, libadwaita
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "text-engine";
|
||||
version = "0.1.1";
|
||||
src = fetchFromGitHub {
|
||||
owner = "mjakeman";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-YSG4Vk3hrmtaJkK1WAlQcdgiDdgC4Un0t6UdaoIcUes=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ gobject-introspection gtk4 meson ninja pkg-config ];
|
||||
|
||||
buildInputs = [ libadwaita json-glib libxml2 ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Rich text framework for GTK";
|
||||
homepage = "https://github.com/mjakeman/text-engine";
|
||||
license = with licenses; [ mpl20 lgpl21Plus ];
|
||||
maintainers = with maintainers; [ foo-dogsquared ];
|
||||
};
|
||||
}
|
@ -22176,6 +22176,7 @@ with pkgs;
|
||||
|
||||
tet = callPackage ../development/tools/misc/tet { };
|
||||
|
||||
text-engine = callPackage ../development/libraries/text-engine { };
|
||||
the-foundation = callPackage ../development/libraries/the-foundation { };
|
||||
|
||||
theft = callPackage ../development/libraries/theft { };
|
||||
|
Loading…
Reference in New Issue
Block a user