mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
71 lines
1.1 KiB
Nix
71 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitLab
|
|
, mkDerivation
|
|
, cmake
|
|
, exempi
|
|
, extra-cmake-modules
|
|
, karchive
|
|
, kdoctools
|
|
, kfilemetadata
|
|
, khtml
|
|
, kitemmodels
|
|
, knewstuff
|
|
, kxmlgui
|
|
, libcdio
|
|
, libkcddb
|
|
, libksane
|
|
, makeWrapper
|
|
, poppler
|
|
, qtcharts
|
|
, qtwebengine
|
|
, solid
|
|
, taglib
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "tellico";
|
|
version = "3.5.3";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "invent.kde.org";
|
|
owner = "office";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-hg2sfBEh3jjVwMFmkgu9nXuXARsPqvlxzxX7kjSI/JU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
kdoctools
|
|
makeWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
exempi
|
|
karchive
|
|
kfilemetadata
|
|
khtml
|
|
kitemmodels
|
|
knewstuff
|
|
kxmlgui
|
|
libcdio
|
|
libkcddb
|
|
libksane
|
|
poppler
|
|
qtcharts
|
|
qtwebengine
|
|
solid
|
|
taglib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Collection management software, free and simple";
|
|
mainProgram = "tellico";
|
|
homepage = "https://tellico-project.org/";
|
|
license = with licenses; [ gpl2Only gpl3Only lgpl2Only ];
|
|
maintainers = with maintainers; [ numkem ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|