about summary refs log tree commit diff
path: root/pkgs/applications/graphics/glabels-qt
diff options
context:
space:
mode:
authormatthewcroughan <matt@croughan.sh>2023-07-02 19:16:16 +0100
committermatthewcroughan <matt@croughan.sh>2023-07-24 10:04:09 +0100
commitd6cdb6a43ff374559d82c3429243a3eefa2aea03 (patch)
treebe232359b78d2f06236b1d35f559f0ef1c303c68 /pkgs/applications/graphics/glabels-qt
parentd8c2229c49e0fdb0104f2ed76b6d626baad2f2d5 (diff)
glabels-qt: init at unstable-2021-02-06
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/applications/graphics/glabels-qt')
-rw-r--r--pkgs/applications/graphics/glabels-qt/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/glabels-qt/default.nix b/pkgs/applications/graphics/glabels-qt/default.nix
new file mode 100644
index 0000000000000..5715241fb7578
--- /dev/null
+++ b/pkgs/applications/graphics/glabels-qt/default.nix
@@ -0,0 +1,31 @@
+{ lib
+, fetchFromGitHub
+, cmake
+, mkDerivation
+, qttools
+}:
+
+mkDerivation {
+  pname = "glabels-qt";
+  version = "unstable-2021-02-06";
+
+  src = fetchFromGitHub {
+    owner = "jimevins";
+    repo = "glabels-qt";
+    rev = "glabels-3.99-master564";
+    hash = "sha256-SdNOkjspqf6NuuIBZDsJneY6PNrIiP4HU46wDpBLt9Y=";
+  };
+
+  nativeBuildInputs = [
+    cmake
+    qttools
+  ];
+
+  meta = with lib; {
+    description = "GLabels Label Designer (Qt/C++)";
+    homepage = "https://github.com/jimevins/glabels-qt";
+    license = licenses.gpl3Only;
+    maintainers = [ maintainers.matthewcroughan ];
+    platforms = lib.platforms.linux;
+  };
+}