mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
* meta.platforms is a list of strings, not a list of lists of strings
(http://hydra.nixos.org/build/399330). * Fix the indentation of longDescription. svn path=/nixpkgs/trunk/; revision=21640
This commit is contained in:
parent
3542a7777e
commit
57c049f4a0
|
@ -14,14 +14,16 @@ stdenv.mkDerivation rec {
|
|||
|
||||
meta = with stdenv.lib; {
|
||||
maintainers = [ maintainers.urkud ];
|
||||
platforms = [ platforms.linux ];
|
||||
platforms = platforms.linux;
|
||||
description = "KDE official IDE";
|
||||
longDescription = ''
|
||||
A free, opensource IDE (Integrated Development Environment) for MS Windows, Mac OsX,
|
||||
Linux, Solaris and FreeBSD. It is a feature-full, plugin extendable IDE for C/C++ and other
|
||||
programing languages. It is based on KDevPlatform, KDE and Qt libraries and is under development
|
||||
since 1998.
|
||||
'';
|
||||
longDescription =
|
||||
''
|
||||
A free, opensource IDE (Integrated Development Environment)
|
||||
for MS Windows, Mac OsX, Linux, Solaris and FreeBSD. It is a
|
||||
feature-full, plugin extendable IDE for C/C++ and other
|
||||
programing languages. It is based on KDevPlatform, KDE and Qt
|
||||
libraries and is under development since 1998.
|
||||
'';
|
||||
homepage = http://www.kdevelop.org;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
meta = with stdenv.lib; {
|
||||
maintainers = [ maintainers.urkud ];
|
||||
platforms = [ platforms.linux ];
|
||||
platforms = platforms.linux;
|
||||
description = "KDE libraries for IDE-like programs";
|
||||
longDescription = ''
|
||||
A free, opensource set of libraries that can be used as a foundation for
|
||||
|
|
Loading…
Reference in a new issue