kimageannotator: init at 0.5.1
This commit is contained in:
parent
b6793cfd0f
commit
b4f96d2543
2 changed files with 26 additions and 0 deletions
24
pkgs/development/libraries/kimageannotator/default.nix
Normal file
24
pkgs/development/libraries/kimageannotator/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ lib, mkDerivation, fetchFromGitHub, cmake, qtbase, kcolorpicker, qttools }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "kimageannotator";
|
||||
version = "0.5.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ksnip";
|
||||
repo = "kImageAnnotator";
|
||||
rev = "v${version}";
|
||||
sha256 = "0hfvrd78lgwd7bccz0fx2pr7g0v3s401y5plra63rxwk55ffkxf8";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake qttools ];
|
||||
buildInputs = [ qtbase kcolorpicker ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool for annotating images";
|
||||
homepage = "https://github.com/ksnip/kImageAnnotator";
|
||||
license = licenses.lgpl3Plus;
|
||||
maintainers = with maintainers; [ fliegendewurst ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -88,6 +88,8 @@ in (kdeFrameworks // plasma5 // plasma5.thirdParty // kdeGear // qt5 // {
|
|||
|
||||
kf5gpgmepp = callPackage ../development/libraries/kf5gpgmepp { };
|
||||
|
||||
kimageannotator = callPackage ../development/libraries/kimageannotator { };
|
||||
|
||||
kproperty = callPackage ../development/libraries/kproperty { };
|
||||
|
||||
kpeoplevcard = callPackage ../development/libraries/kpeoplevcard { };
|
||||
|
|
Loading…
Reference in a new issue