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