summary refs log tree commit diff
path: root/pkgs/development/libraries/kimageannotator
diff options
context:
space:
mode:
authorFliegendeWurst <2012gdwu+github@posteo.de>2021-07-12 12:45:40 +0200
committerFliegendeWurst <2012gdwu+github@posteo.de>2021-07-12 12:45:40 +0200
commitb4f96d2543ef2188c989084737f1165446d44fa1 (patch)
tree64abe9b31a21a3a9ee70cf5be376b161e29fd0d2 /pkgs/development/libraries/kimageannotator
parentb6793cfd0f9032d8acdf45da24e4b0a333379fc3 (diff)
downloadnixpkgs-b4f96d2543ef2188c989084737f1165446d44fa1.tar
nixpkgs-b4f96d2543ef2188c989084737f1165446d44fa1.tar.gz
nixpkgs-b4f96d2543ef2188c989084737f1165446d44fa1.tar.bz2
nixpkgs-b4f96d2543ef2188c989084737f1165446d44fa1.tar.lz
nixpkgs-b4f96d2543ef2188c989084737f1165446d44fa1.tar.xz
nixpkgs-b4f96d2543ef2188c989084737f1165446d44fa1.tar.zst
nixpkgs-b4f96d2543ef2188c989084737f1165446d44fa1.zip
kimageannotator: init at 0.5.1
Diffstat (limited to 'pkgs/development/libraries/kimageannotator')
-rw-r--r--pkgs/development/libraries/kimageannotator/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/libraries/kimageannotator/default.nix b/pkgs/development/libraries/kimageannotator/default.nix
new file mode 100644
index 00000000000..3188415ea04
--- /dev/null
+++ b/pkgs/development/libraries/kimageannotator/default.nix
@@ -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;
+  };
+}