coregarage: init at 4.2.0

This commit is contained in:
dan4ik 2021-07-22 21:29:02 +07:00
parent 5efc01ff8f
commit e4852c8f0f
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ mkDerivation, lib, fetchFromGitLab, qtbase, libarchive, libarchive-qt, libcprime, cmake, ninja }:
mkDerivation rec {
pname = "coregarage";
version = "4.2.0";
src = fetchFromGitLab {
owner = "cubocore/coreapps";
repo = pname;
rev = "v${version}";
sha256 = "sha256-2pOQwSj+QKwpHVJp7VCyq6QpVW5wLUf/BE7ReXrJ78s=";
};
nativeBuildInputs = [
cmake
ninja
];
buildInputs = [
qtbase
libcprime
libarchive
libarchive-qt
];
meta = with lib; {
description = "A settings manager for the C Suite";
homepage = "https://gitlab.com/cubocore/coreapps/coregarage";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dan4ik605743 ];
platforms = platforms.linux;
};
}

View file

@ -3890,6 +3890,8 @@ in
qtbase = qt5.qtbase;
};
coregarage = libsForQt5.callPackage ../applications/misc/coregarage { };
c14 = callPackage ../applications/networking/c14 { };
certstrap = callPackage ../tools/security/certstrap { };