meld: set meta.platforms attribute
This makes Hydra build it and makes it available in the binary channel.
This commit is contained in:
parent
c8b246bda1
commit
bb440b3612
|
@ -24,9 +24,10 @@ stdenv.mkDerivation {
|
||||||
wrapProgram $out/bin/meld --prefix PYTHONPATH : $PYTHONPATH:${pygtk}/lib/${python.libPrefix}/site-packages/gtk-2.0
|
wrapProgram $out/bin/meld --prefix PYTHONPATH : $PYTHONPATH:${pygtk}/lib/${python.libPrefix}/site-packages/gtk-2.0
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Visual diff and merge tool";
|
description = "Visual diff and merge tool";
|
||||||
homepage = http://meld.sourceforge.net;
|
homepage = http://meld.sourceforge.net;
|
||||||
license = "GPLv2+";
|
license = "GPLv2+";
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue