2017-05-15 18:05:35 +01:00
|
|
|
{ mkDerivation
|
2016-04-21 16:32:21 +01:00
|
|
|
, lib
|
2017-02-26 12:49:15 +00:00
|
|
|
, extra-cmake-modules, qtbase
|
2016-04-21 16:32:21 +01:00
|
|
|
}:
|
|
|
|
|
2017-05-15 18:05:35 +01:00
|
|
|
mkDerivation {
|
2016-04-21 16:32:21 +01:00
|
|
|
name = "oxygen-icons5";
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.lgpl3Plus;
|
|
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
|
|
};
|
2017-02-26 12:49:15 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
|
|
buildInputs = [ qtbase ];
|
2017-05-22 19:49:07 +01:00
|
|
|
outputs = [ "out" ]; # only runtime outputs
|
2016-04-21 16:32:21 +01:00
|
|
|
}
|