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
pygame-sdl2: 2.1.0 -> 8.3.1.24090601; modernize derivation (#374642)
[NixPkgs.git]
/
pkgs
/
kde
/
gear
/
itinerary
/
default.nix
blob
0b2292a2ada3d765bfb67230caf3b9ce4228908c
1
{
2
mkKdeDerivation,
3
pkg-config,
4
qtlocation,
5
qtpositioning,
6
shared-mime-info,
7
libical,
8
}:
9
mkKdeDerivation {
10
pname = "itinerary";
11
12
# FIXME: this should really be fixed at ECM level somehow
13
patches = [ ./optional-runtime-dependencies.patch ];
14
15
extraNativeBuildInputs = [
16
pkg-config
17
shared-mime-info
18
];
19
extraBuildInputs = [
20
qtlocation
21
qtpositioning
22
libical
23
];
24
meta.mainProgram = "itinerary";
25
}