depot/third_party/nixpkgs/pkgs/applications/graphics/glabels-qt/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

31 lines
630 B
Nix

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