mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
13 lines
230 B
Nix
13 lines
230 B
Nix
|
{ automoc4, cmake, kde, kdelibs, qt4, exiv2 }:
|
||
|
|
||
|
kde.package {
|
||
|
|
||
|
buildInputs = [ cmake kdelibs qt4 automoc4 exiv2 ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Exiv2 support library";
|
||
|
license = "GPLv2";
|
||
|
kde.name = "libkexiv2";
|
||
|
};
|
||
|
}
|