Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
33 lines
822 B
Nix
33 lines
822 B
Nix
{ lib, mkDerivation, fetchFromGitHub, qmake, qtbase, qttools }:
|
|
|
|
mkDerivation rec {
|
|
pname = "lumina-calculator";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lumina-desktop";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1238d1m0mjkwkdpgq165a4ql9aql0aji5f41rzdzny6m7ws9nm2y";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/src-qt5";
|
|
|
|
nativeBuildInputs = [ qmake qttools ];
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
qmakeFlags = [
|
|
"CONFIG+=WITH_I18N"
|
|
"LRELEASE=${lib.getDev qttools}/bin/lrelease"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Scientific calculator for the Lumina Desktop";
|
|
mainProgram = "lumina-calculator";
|
|
homepage = "https://github.com/lumina-desktop/lumina-calculator";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = teams.lumina.members;
|
|
};
|
|
}
|