Merge pull request #227756 from 0xMRTT/origin/schemes
This commit is contained in:
commit
8f231e546e
2 changed files with 56 additions and 0 deletions
54
pkgs/applications/misc/schemes/default.nix
Normal file
54
pkgs/applications/misc/schemes/default.nix
Normal file
|
@ -0,0 +1,54 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitLab
|
||||
, appstream-glib
|
||||
, desktop-file-utils
|
||||
, glib
|
||||
, gtk4
|
||||
, gtksourceview5
|
||||
, libadwaita
|
||||
, libgee
|
||||
, libpanel
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, wrapGAppsHook4
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "schemes";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "gitlab.gnome.org";
|
||||
owner = "chergert";
|
||||
repo = "schemes";
|
||||
rev = version;
|
||||
hash = "sha256-XUC24KzZSU4+F2JZMsydukvAwEGdMxCnkPG6QHnCw6w=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
wrapGAppsHook4
|
||||
appstream-glib
|
||||
desktop-file-utils
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
gtk4
|
||||
libadwaita
|
||||
gtksourceview5
|
||||
libpanel
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Edit GtkSourceView style-schemes for an application or platform";
|
||||
homepage = "https://gitlab.gnome.org/chergert/schemes";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ _0xMRTT ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -11978,6 +11978,8 @@ with pkgs;
|
|||
|
||||
sasview = libsForQt5.callPackage ../applications/science/misc/sasview { };
|
||||
|
||||
schemes = callPackage ../applications/misc/schemes { };
|
||||
|
||||
scanbd = callPackage ../tools/graphics/scanbd { };
|
||||
|
||||
scdl = callPackage ../tools/misc/scdl { };
|
||||
|
|
Loading…
Reference in a new issue