anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / misc / cubocore-packages / corepad / default.nix
blob3a1cd9f87c1c8848a4430a77a0f6dfc262bc8204
1 { mkDerivation, lib, fetchFromGitLab, qtbase, cmake, ninja, libcprime, libcsys }:
3 mkDerivation rec {
4   pname = "corepad";
5   version = "4.5.0";
7   src = fetchFromGitLab {
8     owner = "cubocore/coreapps";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-qiw6P+I9iAcFcBWiMKAzyxM6waXx/2TPVQHLcLjAnoY=";
12   };
14   nativeBuildInputs = [
15     cmake
16     ninja
17   ];
19   buildInputs = [
20     qtbase
21     libcprime
22     libcsys
23   ];
25   meta = with lib; {
26     description = "Document editor from the C Suite";
27     mainProgram = "corepad";
28     homepage = "https://gitlab.com/cubocore/coreapps/corepad";
29     license = licenses.gpl3Plus;
30     maintainers = with maintainers; [ dan4ik605743 ];
31     platforms = platforms.linux;
32   };