forked from mirrors/nixpkgs
gnome.five-or-more: format with nixpkgs-fmt
This commit is contained in:
parent
20d0500abd
commit
57d754ee3c
|
@ -1,5 +1,20 @@
|
|||
{ lib, stdenv, fetchurl, meson, ninja, pkg-config, gnome, gtk3, wrapGAppsHook
|
||||
, librsvg, libgnome-games-support, gettext, itstool, libxml2, python3, vala }:
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchurl
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, gnome
|
||||
, gtk3
|
||||
, wrapGAppsHook
|
||||
, librsvg
|
||||
, libgnome-games-support
|
||||
, gettext
|
||||
, itstool
|
||||
, libxml2
|
||||
, python3
|
||||
, vala
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "five-or-more";
|
||||
|
@ -11,11 +26,22 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson ninja pkg-config gettext itstool libxml2 python3 wrapGAppsHook
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
gettext
|
||||
itstool
|
||||
libxml2
|
||||
python3
|
||||
wrapGAppsHook
|
||||
vala
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gtk3 librsvg libgnome-games-support gnome.adwaita-icon-theme
|
||||
gtk3
|
||||
librsvg
|
||||
libgnome-games-support
|
||||
gnome.adwaita-icon-theme
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
|
|
Loading…
Reference in a new issue