nixpkgs/pkgs/applications/misc/index-fm/default.nix

55 lines
940 B
Nix
Raw Normal View History

2021-03-06 10:31:44 +00:00
{ lib
, mkDerivation
, fetchFromGitLab
, cmake
, extra-cmake-modules
2021-05-09 11:41:46 +00:00
, applet-window-buttons
2021-03-06 10:31:44 +00:00
, 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
}:
mkDerivation rec {
pname = "index";
2021-05-09 11:41:46 +00:00
version = "1.2.2";
2021-03-06 10:31:44 +00:00
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "maui";
repo = "index-fm";
rev = "v${version}";
2021-05-09 11:41:46 +00:00
sha256 = "sha256-N9/Jt18QRqDMWtEfxWn22e5Ud3YMwJ9B7OQRwTvwX8g=";
2021-03-06 10:31:44 +00:00
};
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
2021-05-09 11:41:46 +00:00
applet-window-buttons
2021-03-06 10:31:44 +00:00
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";
homepage = "https://invent.kde.org/maui/index-fm";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dotlambda ];
};
}