nixpkgs/pkgs/applications/kde/koko.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

87 lines
1.8 KiB
Nix

{
lib,
mkDerivation,
fetchurl,
cmake,
extra-cmake-modules,
exiv2,
kconfig,
kcoreaddons,
kdeclarative,
kfilemetadata,
kguiaddons,
ki18n,
kio,
kirigami2,
knotifications,
kpurpose,
kquickimageedit,
qtgraphicaleffects,
qtlocation,
qtquickcontrols2,
}:
let
# URLs snapshotted through
# https://web.archive.org/save/$url
# Update when stale enough I guess?
admin1 = fetchurl {
url = "https://web.archive.org/web/20210714035424if_/http://download.geonames.org/export/dump/admin1CodesASCII.txt";
sha256 = "0r783yzajs26hvccdy4jv2v06xfgadx2g90fz3yn7lx8flz4nhwm";
};
admin2 = fetchurl {
url = "https://web.archive.org/web/20210714035427if_/http://download.geonames.org/export/dump/admin2Codes.txt";
sha256 = "1n5nzp3xblhr93rb1sadi5vfbw29slv5lc6cxq21h3x3cg0mwqh3";
};
cities1000 = fetchurl {
url = "https://web.archive.org/web/20210714035406if_/http://download.geonames.org/export/dump/cities1000.zip";
sha256 = "0cwbfff8gzci5zrahh6d53b9b3bfv1cbwlv0k6076531i1c7md9p";
};
in
mkDerivation rec {
pname = "koko";
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
exiv2
kconfig
kcoreaddons
kdeclarative
kfilemetadata
kguiaddons
ki18n
kio
kirigami2
knotifications
kpurpose
kquickimageedit
qtgraphicaleffects
qtlocation
qtquickcontrols2
];
prePatch = ''
ln -s ${admin1} src/admin1CodesASCII.txt
ln -s ${admin2} src/admin2Codes.txt
ln -s ${cities1000} src/cities1000.zip
'';
meta = with lib; {
description = "Image gallery mobile application";
mainProgram = "koko";
homepage = "https://apps.kde.org/koko/";
# LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
license = [
licenses.lgpl3Only
licenses.lgpl21Only
];
maintainers = [ ];
};
}