11 lines
174 B
Nix
11 lines
174 B
Nix
|
{ kde, cmake, smokeqt, perl }:
|
||
|
|
||
|
kde {
|
||
|
buildInputs = [ smokeqt perl ];
|
||
|
buildNativeInputs = [ cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Perl bindings for Qt library";
|
||
|
};
|
||
|
}
|