13 lines
185 B
Nix
13 lines
185 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qt5compat,
|
||
|
pkg-config,
|
||
|
exiv2,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "libkexiv2";
|
||
|
|
||
|
extraBuildInputs = [qt5compat exiv2];
|
||
|
extraNativeBuildInputs = [pkg-config];
|
||
|
}
|