forked from mirrors/nixpkgs
34 lines
744 B
Nix
34 lines
744 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|