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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
317 B
Nix
Raw Normal View History

{
mkKdeDerivation,
qtdeclarative,
bison,
flex,
boost,
python3,
}:
mkKdeDerivation {
pname = "kopeninghours";
2024-09-20 05:54:48 +00:00
extraNativeBuildInputs = [
bison
flex
];
extraBuildInputs = [
qtdeclarative
(boost.override {
enablePython = true;
python = python3;
})
python3
];
}