mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
9e4acec7f2
CMake cross continues to be very scuffed.
21 lines
305 B
Nix
21 lines
305 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
bison,
|
|
flex,
|
|
boost,
|
|
python3,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kopeninghours";
|
|
|
|
extraNativeBuildInputs = [bison flex];
|
|
extraBuildInputs = [
|
|
qtdeclarative
|
|
(boost.override {
|
|
enablePython = true;
|
|
python = python3;
|
|
})
|
|
python3
|
|
];
|
|
}
|