repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git]
/
pkgs
/
applications
/
maui
/
clip.nix
blob
10df8c47dfc3cd74db372ad43413db2b9263422b
1
{ lib
2
, mkDerivation
3
, cmake
4
, extra-cmake-modules
5
, applet-window-buttons
6
, karchive
7
, kcoreaddons
8
, ki18n
9
, kio
10
, kirigami2
11
, mauikit
12
, mauikit-filebrowsing
13
, qtmultimedia
14
, qtquickcontrols2
15
, taglib
16
, ffmpeg
17
}:
18
19
mkDerivation {
20
pname = "clip";
21
22
nativeBuildInputs = [
23
cmake
24
extra-cmake-modules
25
];
26
27
buildInputs = [
28
applet-window-buttons
29
karchive
30
kcoreaddons
31
ki18n
32
kio
33
kirigami2
34
mauikit
35
mauikit-filebrowsing
36
qtmultimedia
37
qtquickcontrols2
38
taglib
39
ffmpeg
40
];
41
42
meta = with lib; {
43
description = "Video player and video collection manager";
44
homepage = "https://invent.kde.org/maui/clip";
45
license = licenses.gpl3Plus;
46
maintainers = with maintainers; [ onny ];
47
};
48
}