nixpkgs/pkgs/desktops/xfce/core/garcon/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
526 B
Nix
Raw Normal View History

2020-12-28 22:17:53 +01:00
{ lib, mkXfceDerivation, gobject-introspection, gtk3, libxfce4ui, libxfce4util }:
2017-12-17 16:02:52 +01:00
2019-08-13 23:52:01 +02:00
mkXfceDerivation {
2017-12-17 16:02:52 +01:00
category = "xfce";
pname = "garcon";
2020-12-28 22:17:53 +01:00
version = "4.16.1";
2017-12-17 16:02:52 +01:00
sha256 = "sha256-KimO6w82lkUBSzJbBMI3W8w1eXPARE1oVyJEUk6olow=";
2020-12-28 22:17:53 +01:00
nativeBuildInputs = [ gobject-introspection ];
2017-12-17 16:02:52 +01:00
2019-05-21 01:53:29 +02:00
buildInputs = [ gtk3 libxfce4ui libxfce4util ];
2021-11-28 19:51:44 +01:00
meta = with lib; {
description = "Xfce menu support library";
2021-11-28 19:51:44 +01:00
license = with licenses; [ lgpl2Only fdl11Only ];
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
2017-12-17 16:02:52 +01:00
}