mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 11:34:13 +00:00
Merge pull request #241149 from MatthewCroughan/mc/glabels-qt
This commit is contained in:
commit
01332aa5db
31
pkgs/applications/graphics/glabels-qt/default.nix
Normal file
31
pkgs/applications/graphics/glabels-qt/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user