24 lines
728 B
Nix
24 lines
728 B
Nix
{ lib, stdenv, fetchFromGitHub, intltool, pkg-config, qmake, wrapQtAppsHook, libqalculate, qtbase, qttools }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qalculate-qt";
|
|
version = "4.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "qalculate";
|
|
repo = "qalculate-qt";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-C3alvl8hLxUy+soSjfxlNQ++QTcU9Gong1ydVpu8xGs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake intltool pkg-config wrapQtAppsHook ];
|
|
buildInputs = [ libqalculate qtbase qttools ];
|
|
|
|
meta = with lib; {
|
|
description = "The ultimate desktop calculator";
|
|
homepage = "http://qalculate.github.io";
|
|
maintainers = with maintainers; [ _4825764518 ];
|
|
license = licenses.gpl2Plus;
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|