mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
d6cdb6a43f
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
31 lines
630 B
Nix
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;
|
|
};
|
|
}
|