Merge staging into staging-next

This commit is contained in:
Frederik Rietdijk 2020-12-28 08:45:43 +01:00
commit 92cc19490e
184 changed files with 1346 additions and 1165 deletions

View file

@ -14,13 +14,12 @@ fi
tmp=$(mktemp -d)
pushd $tmp >/dev/null
wget -nH -r -c --no-parent "${WGET_ARGS[@]}" -A '*.tar.xz.sha256' -A '*.mirrorlist' >/dev/null
find -type f -name '*.mirrorlist' -delete
wget -nH -r -c --no-parent "${WGET_ARGS[@]}" >/dev/null
csv=$(mktemp)
find . -type f | while read src; do
# Sanitize file name
filename=$(gawk '{ print $2 }' "$src" | tr '@' '_')
filename=$(basename "$src" | tr '@' '_')
nameVersion="${filename%.tar.*}"
name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,' | sed -e 's,-everywhere-src$,,')
version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,')
@ -40,8 +39,8 @@ gawk -F , "{ print \$1 }" $csv | sort | uniq | while read name; do
latestVersion=$(echo "$versions" | sort -rV | head -n 1)
src=$(gawk -F , "/^$name,$latestVersion,/ { print \$3 }" $csv)
filename=$(gawk -F , "/^$name,$latestVersion,/ { print \$4 }" $csv)
url="$(dirname "${src:2}")/$filename"
sha256=$(gawk '{ print $1 }' "$src")
url="${src:2}"
sha256=$(nix-hash --type sha256 --base32 --flat "$src")
cat >>"$SRCS" <<EOF
$name = {
version = "$latestVersion";

View file

@ -287,6 +287,12 @@
This avoids that the password gets exposed in the nix store.
</para>
</listitem>
<listitem>
<para>
The <literal>wafHook</literal> hook does not wrap Python anymore.
Packages depending on <literal>wafHook</literal> need to include any Python into their <literal>nativeBuildInputs</literal>.
</para>
</listitem>
<listitem>
<para>
Starting with version 1.7.0, the project formerly named <literal>CodiMD</literal>

View file

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, cairo, fftw, gtkmm2, lv2, lvtk, pkgconfig
, wafHook }:
, wafHook, python3 }:
stdenv.mkDerivation rec {
pname = "ams-lv2";
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
sha256 = "1lz2mvk4gqsyf92yxd3aaldx0d0qi28h4rnnvsaz4ls0ccqm80nk";
};
nativeBuildInputs = [ pkgconfig wafHook ];
nativeBuildInputs = [ pkgconfig wafHook python3 ];
buildInputs = [ cairo fftw gtkmm2 lv2 lvtk ];
meta = with stdenv.lib; {

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, fftwSinglePrec, lv2, pkgconfig, wafHook }:
{ stdenv, fetchurl, fftwSinglePrec, lv2, pkgconfig, wafHook, python3 }:
stdenv.mkDerivation rec {
pname = "mda-lv2";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "1a3cv6w5xby9yn11j695rbh3c4ih7rxfxmkca9s1324ljphh06m8";
};
nativeBuildInputs = [ pkgconfig wafHook ];
nativeBuildInputs = [ pkgconfig wafHook python3 ];
buildInputs = [ fftwSinglePrec lv2 ];
meta = with stdenv.lib; {

View file

@ -38,10 +38,6 @@ pythonPackages.buildPythonApplication rec {
# There are no tests
doCheck = false;
preFixup = ''
gappsWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH")
'';
meta = with stdenv.lib; {
homepage = "https://www.mopidy.com/";
description = ''

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "akonadi-calendar";
pname = "akonadi-calendar";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 ];
maintainers = kdepimTeam;

View file

@ -8,7 +8,7 @@
}:
mkDerivation {
name = "akonadi-contacts";
pname = "akonadi-contacts";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 ];
maintainers = kdepimTeam;

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "akonadi-import-wizard";
pname = "akonadi-import-wizard";
meta = {
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12 ];
maintainers = kdepimTeam;

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "akonadi-mime";
pname = "akonadi-mime";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 ];
maintainers = kdepimTeam;

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "akonadi-notes";
pname = "akonadi-notes";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "akonadi-search";
pname = "akonadi-search";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "akonadi";
pname = "akonadi";
meta = {
license = [ lib.licenses.lgpl21 ];
maintainers = kdepimTeam;

View file

@ -7,7 +7,7 @@
}:
mkDerivation {
name = "akonadiconsole";
pname = "akonadiconsole";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -10,7 +10,7 @@
}:
mkDerivation {
name = "akregator";
pname = "akregator";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -20,7 +20,7 @@ let
in
mkDerivation {
name = "ark";
pname = "ark";
meta = {
description = "Graphical file compression/decompression utility";
license = with lib.licenses;

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "baloo-widgets";
pname = "baloo-widgets";
meta = {
license = [ lib.licenses.lgpl21 ];
maintainers = [ lib.maintainers.ttuegel ];

View file

@ -4,7 +4,7 @@
}:
mkDerivation {
name = "bomber";
pname = "bomber";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.bomber";
description = "A single player arcade game";

View file

@ -4,7 +4,7 @@
}:
mkDerivation {
name = "bovo";
pname = "bovo";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.bovo";
description = "Five in a row application";

View file

@ -1,16 +1,23 @@
{
mkDerivation, lib, kdepimTeam,
mkDerivation, lib, kdepimTeam, fetchpatch,
extra-cmake-modules, kdoctools,
akonadi, akonadi-calendar, akonadi-mime, akonadi-notes, kcalutils, kdepim-apps-libs,
kholidays, kidentitymanagement, kmime, pimcommon, qttools,
}:
mkDerivation {
name = "calendarsupport";
pname = "calendarsupport";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
patches = [
# Patch for Qt 5.15.2 until version 20.12.0
(fetchpatch {
url = "https://invent.kde.org/pim/calendarsupport/-/commit/b4193facb223bd5b73a65318dec8ced51b66adf7.patch";
sha256 = "sha256:1da11rqbxxrl06ld3avc41p064arz4n6w5nxq8r008v8ws3s64dy";
})
];
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
akonadi akonadi-mime akonadi-notes kcalutils kdepim-apps-libs kholidays pimcommon qttools

View file

@ -35,15 +35,13 @@ let
mkDerivation = args:
let
inherit (args) name;
sname = args.sname or name;
inherit (srcs.${sname}) src version;
inherit (args) pname;
inherit (srcs.${pname}) src version;
mkDerivation =
libsForQt5.callPackage ({ mkDerivation }: mkDerivation) {};
in
mkDerivation (args // {
pname = name;
inherit src version;
inherit pname version src;
outputs = args.outputs or [ "out" ];

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "dolphin-plugins";
pname = "dolphin-plugins";
meta = {
license = [ lib.licenses.gpl2 ];
maintainers = [ lib.maintainers.ttuegel ];

View file

@ -9,7 +9,7 @@
}:
mkDerivation {
name = "dolphin";
pname = "dolphin";
meta = {
license = with lib.licenses; [ gpl2 fdl12 ];
maintainers = [ lib.maintainers.ttuegel ];

View file

@ -8,7 +8,7 @@
}:
mkDerivation {
name = "dragon";
pname = "dragon";
meta = {
license = with lib.licenses; [ gpl2 fdl12 ];
description = "A simple media player for KDE";

View file

@ -19,7 +19,7 @@
}:
mkDerivation rec {
name = "elisa";
pname = "elisa";
buildInputs = [ libvlc ];

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "eventviews";
pname = "eventviews";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -1 +1 @@
WGET_ARGS=(http://download.kde.org/stable/release-service/20.08.2/src)
WGET_ARGS=( http://download.kde.org/stable/release-service/20.08.3/src -A '*.tar.xz' )

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "ffmpegthumbs";
pname = "ffmpegthumbs";
meta = {
license = with lib.licenses; [ gpl2 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "filelight";
pname = "filelight";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ fridh vcunat ];

View file

@ -4,7 +4,7 @@
}:
mkDerivation {
name = "granatier";
pname = "granatier";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.granatier";
description = "Clone of the classic Bomberman game";

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "grantleetheme";
pname = "grantleetheme";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -7,7 +7,7 @@
}:
mkDerivation {
name = "gwenview";
pname = "gwenview";
meta = {
license = with lib.licenses; [ gpl2 fdl12 ];
maintainers = [ lib.maintainers.ttuegel ];

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "incidenceeditor";
pname = "incidenceeditor";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -8,7 +8,7 @@
}:
mkDerivation {
name = "k3b";
pname = "k3b";
meta = with lib; {
license = with licenses; [ gpl2Plus ];
maintainers = with maintainers; [ sander phreedom ];

View file

@ -1,5 +1,5 @@
{
mkDerivation, lib, kdepimTeam,
mkDerivation, lib, kdepimTeam, fetchpatch,
extra-cmake-modules, kdoctools,
akonadi, akonadi-search, grantlee, grantleetheme, kcmutils, kcompletion,
kcrash, kdbusaddons, kdepim-apps-libs, ki18n, kontactinterface, kparts,
@ -8,11 +8,18 @@
}:
mkDerivation {
name = "kaddressbook";
pname = "kaddressbook";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
patches = [
# Patch for Qt 5.15.2 until version 20.12.0
(fetchpatch {
url = "https://invent.kde.org/pim/kaddressbook/-/commit/8aee8d40ae2a1c920d3520163d550d3b49720226.patch";
sha256 = "sha256:0dsy119cd5w9khiwgk6fb7xnjzmj94rfphf327k331lf15zq4853";
})
];
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
akonadi akonadi-search grantlee grantleetheme kcmutils kcompletion kcrash

View file

@ -16,7 +16,7 @@
}:
mkDerivation {
name = "kalarm";
pname = "kalarm";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.rittelle ];

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kalarmcal";
pname = "kalarmcal";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, openbabel, avogadro, qtscript, kparts, kplotting, kunitconversion }:
mkDerivation {
name = "kalzium";
pname = "kalzium";
meta = with lib; {
homepage = "https://kde.org/applications/en/utilities/org.kde.kalzium";
description = "Program that shows you the Periodic Table of Elements";

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames }:
mkDerivation {
name = "kapman";
pname = "kapman";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.kapman";
description = "Clone of the well known game Pac-Man";

View file

@ -8,7 +8,7 @@
}:
mkDerivation {
name = "kapptemplate";
pname = "kapptemplate";
nativeBuildInputs = [ extra-cmake-modules cmake ];

View file

@ -8,7 +8,7 @@
}:
mkDerivation {
name = "kate";
pname = "kate";
meta = {
license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ];
maintainers = [ lib.maintainers.ttuegel ];

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames, knewstuff }:
mkDerivation {
name = "katomic";
pname = "katomic";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.katomic";
description = "Fun educational game built around molecular geometry";

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames }:
mkDerivation {
name = "kblackbox";
pname = "kblackbox";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.kblackbox";
description = "Game of hide and seek played on a grid of boxes";

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames }:
mkDerivation {
name = "kblocks";
pname = "kblocks";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.kblocks";
description = "Classic falling blocks game";

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, libkdegames, kconfig, kcrash, kio, ki18n }:
mkDerivation {
name = "kbounce";
pname = "kbounce";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.kbounce";
description = "Single player arcade game with the elements of puzzle";

View file

@ -10,7 +10,7 @@
}:
mkDerivation {
name = "kbreakout";
pname = "kbreakout";
meta.license = with lib.licenses; [ lgpl21 gpl3 ];
outputs = [ "out" "dev" ];
nativeBuildInputs = [

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kcachegrind";
pname = "kcachegrind";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ orivej ];

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kcalc";
pname = "kcalc";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.fridh ];

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kcalutils";
pname = "kcalutils";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "kcharselect";
pname = "kcharselect";
meta = {
license = lib.licenses.gpl2Plus;
maintainers = [ lib.maintainers.schmittlauch ];

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "kcolorchooser";
pname = "kcolorchooser";
meta = {
license = with lib.licenses; [ mit ];
maintainers = [ lib.maintainers.ttuegel ];

View file

@ -7,7 +7,7 @@
}:
mkDerivation {
name = "kdebugsettings";
pname = "kdebugsettings";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.rittelle ];

View file

@ -26,15 +26,7 @@
}:
mkDerivation {
name = "kdeconnect-kde";
patches = [
# https://invent.kde.org/network/kdeconnect-kde/-/merge_requests/328
(fetchpatch {
url = "https://invent.kde.org/network/kdeconnect-kde/-/commit/6101ef3ad07d865958d58a3d2736f5536f1c5719.diff";
sha256 = "17mr7k13226vzcgxlmfs6q2mdc5j7vwp4iri9apmh6xlf6r591ac";
})
];
pname = "kdeconnect-kde";
buildInputs = [
kcmutils

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "kdegraphics-mobipocket";
pname = "kdegraphics-mobipocket";
meta = {
license = [ lib.licenses.gpl2Plus ];
maintainers = [ lib.maintainers.ttuegel ];

View file

@ -4,7 +4,7 @@
}:
mkDerivation {
name = "kdegraphics-thumbnailers";
pname = "kdegraphics-thumbnailers";
meta = {
license = [ lib.licenses.lgpl21 ];
maintainers = [ lib.maintainers.ttuegel ];

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "kdenetwork-filesharing";
pname = "kdenetwork-filesharing";
meta = {
license = [ lib.licenses.gpl2 lib.licenses.lgpl21 ];
maintainers = [ lib.maintainers.ttuegel ];

View file

@ -35,7 +35,7 @@
}:
mkDerivation {
name = "kdenlive";
pname = "kdenlive";
nativeBuildInputs = [
extra-cmake-modules
kdoctools

View file

@ -9,7 +9,7 @@
}:
mkDerivation {
name = "kdepim-addons";
pname = "kdepim-addons";
meta = {
license = with lib.licenses; [ gpl2Plus lgpl21Plus ];
maintainers = kdepimTeam;

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kdepim-apps-libs";
pname = "kdepim-apps-libs";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -9,7 +9,7 @@
}:
mkDerivation {
name = "kdepim-runtime";
pname = "kdepim-runtime";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "kdf";
pname = "kdf";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.peterhoeg ];

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "kdialog";
pname = "kdialog";
meta = {
license = with lib.licenses; [ gpl2 fdl12 ];

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames, kconfig, knotifyconfig }:
mkDerivation {
name = "kdiamond";
pname = "kdiamond";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.kdiamond";
description = "A single player puzzle game";

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "keditbookmarks";
pname = "keditbookmarks";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ kio kparts kwindowsystem ];
meta = with lib; {

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "kfind";
pname = "kfind";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.iblech ];

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, kcompletion, kxmlgui }:
mkDerivation {
name = "kfloppy";
pname = "kfloppy";
meta = with lib; {
homepage = "https://kde.org/applications/en/utilities/org.kde.kfloppy";
description = "Utility to format 3.5\" and 5.25\" floppy disks";

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "kgeography";
pname = "kgeography";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.globin ];

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kget";
pname = "kget";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];

View file

@ -7,7 +7,7 @@
}:
mkDerivation {
name = "kgpg";
pname = "kgpg";
nativeBuildInputs = [ extra-cmake-modules kdoctools makeWrapper ];
buildInputs = [
akonadi-contacts gnupg karchive kcodecs kcontacts kcoreaddons kcrash

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "khelpcenter";
pname = "khelpcenter";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
grantlee kcmutils kconfig kcoreaddons kdbusaddons kdelibs4support khtml

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kidentitymanagement";
pname = "kidentitymanagement";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kig";
pname = "kig";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ raskin ];

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames, knewstuff }:
mkDerivation {
name = "kigo";
pname = "kigo";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.kigo";
description = "An open-source implementation of the popular Go game";

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames }:
mkDerivation {
name = "killbots";
pname = "killbots";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.killbots";
description = "A game where you avoid robots";

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "kimap";
pname = "kimap";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -7,7 +7,7 @@
}:
mkDerivation {
name = "kio-extras";
pname = "kio-extras";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 ];
maintainers = [ lib.maintainers.ttuegel ];

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kipi-plugins";
pname = "kipi-plugins";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kitinerary";
pname = "kitinerary";
meta = {
license = with lib.licenses; [ lgpl21 ];
maintainers = [ lib.maintainers.bkchr ];

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "kldap";
pname = "kldap";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kleopatra";
pname = "kleopatra";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, phonon, knewstuff }:
mkDerivation {
name = "klettres";
pname = "klettres";
meta = with lib; {
homepage = "https://kde.org/applications/en/utilities/org.kde.klettres";
description = "An application specially designed to help the user to learn an alphabet";

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames }:
mkDerivation {
name = "klines";
pname = "klines";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.klines";
description = "A simple but highly addictive one player game";

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio }:
mkDerivation {
name = "kmag";
pname = "kmag";
meta = with lib; {
homepage = "https://kde.org/applications/en/utilities/org.kde.kmag";
description = "A small Linux utility to magnify a part of the screen";

View file

@ -9,7 +9,7 @@
}:
mkDerivation {
name = "kmahjongg";
pname = "kmahjongg";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ kdeclarative libkmahjongg knewstuff libkdegames ];
meta = {

View file

@ -7,7 +7,7 @@
}:
mkDerivation {
name = "kmail-account-wizard";
pname = "kmail-account-wizard";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -11,7 +11,7 @@
}:
mkDerivation {
name = "kmail";
pname = "kmail";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -7,7 +7,7 @@
}:
mkDerivation {
name = "kmailtransport";
pname = "kmailtransport";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "kmbox";
pname = "kmbox";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;

View file

@ -5,7 +5,7 @@
}:
mkDerivation {
name = "kmime";
pname = "kmime";
meta = {
license = [ lib.licenses.lgpl21 ];
maintainers = kdepimTeam;

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, libkdegames, kconfig, kcrash, kdoctools, ki18n, kio }:
mkDerivation {
name = "kmines";
pname = "kmines";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.kmines";
description = "A classic Minesweeper game";

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kmix";
pname = "kmix";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = [ lib.maintainers.rongcuid ];

View file

@ -3,7 +3,7 @@
}:
mkDerivation {
name = "kmplot";
pname = "kmplot";
meta = {
license = with lib.licenses; [ gpl2Plus fdl12 ];
maintainers = [ lib.maintainers.orivej ];

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames, kdnssd }:
mkDerivation {
name = "knavalbattle";
pname = "knavalbattle";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.knavalbattle";
description = "Naval Battle is a ship sinking game";

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames }:
mkDerivation {
name = "knetwalk";
pname = "knetwalk";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.knetwalk";
description = "A single player logic game";

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, kplotting, plasma-framework, libkdegames }:
mkDerivation {
name = "knights";
pname = "knights";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.knights";
description = "A chess game";

View file

@ -13,7 +13,7 @@
}:
mkDerivation {
name = "knotes";
pname = "knotes";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
kcompletion kconfig kconfigwidgets kcoreaddons kcrash

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kolf";
pname = "kolf";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ libkdegames kio ktextwidgets ];
meta = {

View file

@ -1,7 +1,7 @@
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames }:
mkDerivation {
name = "kollision";
pname = "kollision";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.kollision";
description = "A casual game";

View file

@ -7,7 +7,7 @@
}:
mkDerivation {
name = "kolourpaint";
pname = "kolourpaint";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ kdelibs4support libkexiv2 ];
meta = {

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "kompare";
pname = "kompare";
meta = { license = with lib.licenses; [ gpl2 ]; };
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [

View file

@ -6,7 +6,7 @@
}:
mkDerivation {
name = "konqueror";
pname = "konqueror";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
kdelibs4support kcmutils khtml kdesu

Some files were not shown because too many files have changed in this diff Show more