mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
14 lines
205 B
Nix
14 lines
205 B
Nix
{ kde, cmake, smokeqt, perl }:
|
|
|
|
kde {
|
|
|
|
# TODO: qscintilla2, qwt5
|
|
|
|
buildInputs = [ smokeqt perl ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = {
|
|
description = "Perl bindings for Qt library";
|
|
};
|
|
}
|