tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
kf57: add meta.branch to fix monitor
Thomas Tuegel
11 years ago
fe8072ee
69950822
+13
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
kde-frameworks-5.7
default.nix
+13
-6
pkgs/development/libraries/kde-frameworks-5.7/default.nix
···
19
19
let
20
20
21
21
mkDerivation = drv:
22
22
+
let inherit (parseDrvName drv.version) version; in
22
23
stdenv.mkDerivation
23
24
(drv // {
24
25
setupHook = ./setup-hook.sh;
···
40
41
platforms = stdenv.lib.platforms.linux;
41
42
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
42
43
homepage = "http://www.kde.org";
44
44
+
inherit version;
45
45
+
branch = intersperse "." (take 2 (splitString "." version));
43
46
} // (drv.meta or {});
44
47
});
45
48
···
108
111
[
109
112
./extra-cmake-modules/0001-extra-cmake-modules-paths.patch
110
113
];
111
111
-
meta = {
112
112
-
license = with stdenv.lib.licenses; [ bsd2 ];
113
113
-
platforms = stdenv.lib.platforms.linux;
114
114
-
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
115
115
-
homepage = "http://www.kde.org";
116
116
-
};
114
114
+
meta =
115
115
+
let inherit (parseDrvName super.extra-cmake-modules.name) version; in
116
116
+
{
117
117
+
license = with stdenv.lib.licenses; [ bsd2 ];
118
118
+
platforms = stdenv.lib.platforms.linux;
119
119
+
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
120
120
+
homepage = "http://www.kde.org";
121
121
+
inherit version;
122
122
+
branch = intersperse "." (take 2 (splitString "." version));
123
123
+
};
117
124
};
118
125
119
126
frameworkintegration = super.frameworkintegration // {