Merge pull request #241149 from MatthewCroughan/mc/glabels-qt

This commit is contained in:
Sandro 2023-07-24 17:42:29 +02:00 committed by GitHub
commit 01332aa5db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -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;
};
}

View File

@ -26113,6 +26113,8 @@ with pkgs;
glabels = callPackage ../applications/graphics/glabels { };
glabels-qt = libsForQt5.callPackage ../applications/graphics/glabels-qt { };
nats-server = callPackage ../servers/nats-server { };
go-autoconfig = callPackage ../servers/go-autoconfig { };