nixpkgs/pkgs/applications/maui/index.nix

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

49 lines
770 B
Nix
Raw Normal View History

2021-03-06 10:31:44 +00:00
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, karchive
, kcoreaddons
, ki18n
, kio
, kirigami2
, mauikit
2021-05-09 11:41:46 +00:00
, mauikit-filebrowsing
2021-03-06 10:31:44 +00:00
, qtmultimedia
, qtquickcontrols2
}:
2022-05-17 01:11:06 +00:00
mkDerivation {
2021-12-19 03:56:34 +00:00
pname = "index-fm";
2021-03-06 10:31:44 +00:00
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace "-Werror" ""
'';
2021-03-06 10:31:44 +00:00
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
karchive
kcoreaddons
ki18n
kio
kirigami2
mauikit
2021-05-09 11:41:46 +00:00
mauikit-filebrowsing
2021-03-06 10:31:44 +00:00
qtmultimedia
qtquickcontrols2
];
meta = with lib; {
description = "Multi-platform file manager";
mainProgram = "index";
2021-03-06 10:31:44 +00:00
homepage = "https://invent.kde.org/maui/index-fm";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dotlambda ];
};
}