depot/third_party/nixpkgs/pkgs/kde/gear/kopeninghours/default.nix

22 lines
305 B
Nix
Raw Normal View History

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