mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 00:22:13 +00:00
33 lines
704 B
Nix
33 lines
704 B
Nix
|
{ mkDerivation, lib, fetchFromGitLab, qtbase, libcprime, libcsys, cmake, ninja }:
|
||
|
|
||
|
mkDerivation rec {
|
||
|
pname = "corefm";
|
||
|
version = "4.2.0";
|
||
|
|
||
|
src = fetchFromGitLab {
|
||
|
owner = "cubocore/coreapps";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-PczKIKY9uCD+cAzAC6Gkb+g+cn9KKCQYd3epoZK8bvA=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
ninja
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
qtbase
|
||
|
libcprime
|
||
|
libcsys
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "A lightwight filemanager from the C Suite";
|
||
|
homepage = "https://gitlab.com/cubocore/coreapps/corefm";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = with maintainers; [ dan4ik605743 ];
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|