mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
26 lines
701 B
Nix
26 lines
701 B
Nix
{ mkDerivation, lib, fetchFromGitHub, tinyxml-2, cmake, qtbase, qtmultimedia }:
|
|
mkDerivation rec {
|
|
version = "1.0.13";
|
|
pname = "pro-office-calculator";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RobJinman";
|
|
repo = "pro_office_calc";
|
|
rev = "v${version}";
|
|
sha256 = "1v75cysargmp4fk7px5zgib1p6h5ya4w39rndbzk614fcnv0iipd";
|
|
};
|
|
|
|
buildInputs = [ qtbase qtmultimedia tinyxml-2 ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with lib; {
|
|
description = "Completely normal office calculator";
|
|
mainProgram = "procalc";
|
|
homepage = "https://proofficecalculator.com/";
|
|
maintainers = [ maintainers.pmiddend ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|