nixpkgs/pkgs/kde/gear/kopeninghours/default.nix
2024-09-20 08:54:48 +03:00

24 lines
317 B
Nix

{
mkKdeDerivation,
qtdeclarative,
bison,
flex,
boost,
python3,
}:
mkKdeDerivation {
pname = "kopeninghours";
extraNativeBuildInputs = [
bison
flex
];
extraBuildInputs = [
qtdeclarative
(boost.override {
enablePython = true;
python = python3;
})
python3
];
}