2021-01-17 02:21:50 +00:00
|
|
|
{ lib, stdenv, fetchFromGitLab, pkg-config, xfce4-dev-tools, hicolor-icon-theme, xfce, wrapGAppsHook }:
|
2020-04-13 22:12:16 +01:00
|
|
|
|
|
|
|
{ category
|
|
|
|
, pname
|
|
|
|
, version
|
|
|
|
, attrPath ? "xfce.${pname}"
|
|
|
|
, rev-prefix ? "${pname}-"
|
|
|
|
, rev ? "${rev-prefix}${version}"
|
|
|
|
, sha256
|
|
|
|
, odd-unstable ? true
|
|
|
|
, patchlevel-unstable ? true
|
|
|
|
, ...
|
|
|
|
} @ args:
|
2017-12-17 15:02:52 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
inherit (builtins) filter getAttr head isList;
|
2021-01-15 13:21:58 +00:00
|
|
|
inherit (lib) attrNames concatLists recursiveUpdate zipAttrsWithNames;
|
2017-12-17 15:02:52 +00:00
|
|
|
|
|
|
|
filterAttrNames = f: attrs:
|
|
|
|
filter (n: f (getAttr n attrs)) (attrNames attrs);
|
|
|
|
|
|
|
|
concatAttrLists = attrsets:
|
|
|
|
zipAttrsWithNames (filterAttrNames isList (head attrsets)) (_: concatLists) attrsets;
|
|
|
|
|
2020-04-13 22:12:16 +01:00
|
|
|
template = rec {
|
2020-12-27 20:28:16 +00:00
|
|
|
inherit pname version;
|
2017-12-17 15:02:52 +00:00
|
|
|
|
2021-01-17 02:21:50 +00:00
|
|
|
nativeBuildInputs = [ pkg-config xfce4-dev-tools wrapGAppsHook ];
|
2018-07-21 22:07:49 +01:00
|
|
|
buildInputs = [ hicolor-icon-theme ];
|
2017-12-17 15:02:52 +00:00
|
|
|
configureFlags = [ "--enable-maintainer-mode" ];
|
|
|
|
|
2020-12-27 13:34:29 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.xfce.org";
|
|
|
|
owner = category;
|
|
|
|
repo = pname;
|
2018-07-21 22:00:53 +01:00
|
|
|
inherit rev sha256;
|
2017-12-17 15:02:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2020-04-05 02:53:24 +01:00
|
|
|
pos = builtins.unsafeGetAttrPos "pname" args;
|
|
|
|
|
2020-04-13 22:12:16 +01:00
|
|
|
passthru.updateScript = xfce.updateScript {
|
|
|
|
inherit pname version attrPath rev-prefix odd-unstable patchlevel-unstable;
|
2020-12-27 13:34:29 +00:00
|
|
|
versionLister = xfce.gitLister src.meta.homepage;
|
2020-04-13 22:12:16 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-12-27 13:34:29 +00:00
|
|
|
homepage = "https://gitlab.xfce.org/${category}/${pname}/about";
|
2017-12-17 15:02:52 +00:00
|
|
|
license = licenses.gpl2; # some libraries are under LGPLv2+
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
publicArgs = removeAttrs args [ "category" "pname" "sha256" ];
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation (recursiveUpdate template publicArgs // concatAttrLists [ template args ])
|