mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
30 lines
585 B
Nix
30 lines
585 B
Nix
{ mkDerivation
|
|
, lib
|
|
, kirigami2
|
|
, extra-cmake-modules
|
|
, kitemmodels
|
|
, qtgraphicaleffects
|
|
, qtquickcontrols2
|
|
, qttools
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kirigami-gallery";
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules qttools ];
|
|
|
|
buildInputs = [
|
|
qtgraphicaleffects
|
|
qtquickcontrols2
|
|
kirigami2
|
|
kitemmodels
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://apps.kde.org/kirigami2.gallery/";
|
|
description = "View examples of Kirigami components";
|
|
mainProgram = "kirigami2gallery";
|
|
license = licenses.lgpl2;
|
|
maintainers = with maintainers; [ shadowrz ];
|
|
};
|
|
}
|