xfce.xfce4-terminal: 1.0.4 -> 1.1.0
https://gitlab.xfce.org/apps/xfce4-terminal/-/compare/xfce4-terminal-1.0.4...xfce4-terminal-1.1.0 - Explicitly add glib. - Format with nixpkgs-fmt. - Clean up unneeded NIX_CFLAGS_COMPILE.
This commit is contained in:
parent
d680ded26d
commit
6d2a11d1a4
1 changed files with 28 additions and 7 deletions
|
@ -1,17 +1,38 @@
|
|||
{ lib, mkXfceDerivation, gtk3, libxfce4ui, vte, xfconf, pcre2, libxslt, docbook_xml_dtd_45, docbook_xsl, nixosTests }:
|
||||
{ lib
|
||||
, mkXfceDerivation
|
||||
, glib
|
||||
, gtk3
|
||||
, libxfce4ui
|
||||
, vte
|
||||
, xfconf
|
||||
, pcre2
|
||||
, libxslt
|
||||
, docbook_xml_dtd_45
|
||||
, docbook_xsl
|
||||
, nixosTests
|
||||
}:
|
||||
|
||||
mkXfceDerivation {
|
||||
category = "apps";
|
||||
pname = "xfce4-terminal";
|
||||
version = "1.0.4";
|
||||
version = "1.1.0";
|
||||
|
||||
sha256 = "sha256-eCb6KB9fFPuYzNLUm/yYrh+0D60ISzasnv/myStImEI=";
|
||||
sha256 = "sha256-ilxiP1Org5/uSQOzfRgODmouH0BmK3CmCJj1kutNuII=";
|
||||
|
||||
nativeBuildInputs = [ libxslt docbook_xml_dtd_45 docbook_xsl ];
|
||||
nativeBuildInputs = [
|
||||
libxslt
|
||||
docbook_xml_dtd_45
|
||||
docbook_xsl
|
||||
];
|
||||
|
||||
buildInputs = [ gtk3 libxfce4ui vte xfconf pcre2 ];
|
||||
|
||||
env.NIX_CFLAGS_COMPILE = "-I${libxfce4ui.dev}/include/xfce4";
|
||||
buildInputs = [
|
||||
glib
|
||||
gtk3
|
||||
libxfce4ui
|
||||
vte
|
||||
xfconf
|
||||
pcre2
|
||||
];
|
||||
|
||||
passthru.tests.test = nixosTests.terminal-emulators.xfce4-terminal;
|
||||
|
||||
|
|
Loading…
Reference in a new issue