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
let
20
21
mkDerivation = drv:
0
22
stdenv.mkDerivation
23
(drv // {
24
setupHook = ./setup-hook.sh;
···
40
platforms = stdenv.lib.platforms.linux;
41
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
42
homepage = "http://www.kde.org";
0
0
43
} // (drv.meta or {});
44
});
45
···
108
[
109
./extra-cmake-modules/0001-extra-cmake-modules-paths.patch
110
];
111
-
meta = {
112
-
license = with stdenv.lib.licenses; [ bsd2 ];
113
-
platforms = stdenv.lib.platforms.linux;
114
-
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
115
-
homepage = "http://www.kde.org";
116
-
};
0
0
0
0
117
};
118
119
frameworkintegration = super.frameworkintegration // {
···
19
let
20
21
mkDerivation = drv:
22
+
let inherit (parseDrvName drv.version) version; in
23
stdenv.mkDerivation
24
(drv // {
25
setupHook = ./setup-hook.sh;
···
41
platforms = stdenv.lib.platforms.linux;
42
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
43
homepage = "http://www.kde.org";
44
+
inherit version;
45
+
branch = intersperse "." (take 2 (splitString "." version));
46
} // (drv.meta or {});
47
});
48
···
111
[
112
./extra-cmake-modules/0001-extra-cmake-modules-paths.patch
113
];
114
+
meta =
115
+
let inherit (parseDrvName super.extra-cmake-modules.name) version; in
116
+
{
117
+
license = with stdenv.lib.licenses; [ bsd2 ];
118
+
platforms = stdenv.lib.platforms.linux;
119
+
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
120
+
homepage = "http://www.kde.org";
121
+
inherit version;
122
+
branch = intersperse "." (take 2 (splitString "." version));
123
+
};
124
};
125
126
frameworkintegration = super.frameworkintegration // {