5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
29 lines
958 B
Nix
29 lines
958 B
Nix
{ lib, stdenv, fetchFromGitHub, intltool, autoreconfHook, pkg-config, libqalculate, gtk3, curl, wrapGAppsHook3, desktopToDarwinBundle }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "qalculate-gtk";
|
|
version = "5.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "qalculate";
|
|
repo = "qalculate-gtk";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-yI+8TrNZJt4eJnDX5mk6RozBe2ZeP7sTyAjsgiYQPck=";
|
|
};
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
nativeBuildInputs = [ intltool pkg-config autoreconfHook wrapGAppsHook3 ]
|
|
++ lib.optionals stdenv.isDarwin [ desktopToDarwinBundle ];
|
|
buildInputs = [ libqalculate gtk3 curl ];
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "The ultimate desktop calculator";
|
|
homepage = "http://qalculate.github.io";
|
|
maintainers = with maintainers; [ gebner doronbehar alyaeanyx ];
|
|
license = licenses.gpl2Plus;
|
|
mainProgram = "qalculate-gtk";
|
|
platforms = platforms.all;
|
|
};
|
|
})
|