Merge pull request #130809 from dan4ik605743/coreimage
coreimage: init at 4.2.0
This commit is contained in:
commit
b65a39311c
31
pkgs/applications/graphics/coreimage/default.nix
Normal file
31
pkgs/applications/graphics/coreimage/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ mkDerivation, lib, fetchFromGitLab, libcprime, qtbase, cmake, ninja }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "coreimage";
|
||||
version = "4.2.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "cubocore/coreapps";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-dxRHzSG5ea1MhpTjgZbFztV9mElEaeOK4NsmieSgf5Q";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
ninja
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
libcprime
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An image viewer from the C Suite";
|
||||
homepage = "https://gitlab.com/cubocore/coreapps/coreimage";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ dan4ik605743 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -23477,6 +23477,8 @@ in
|
||||
|
||||
corrscope = libsForQt5.callPackage ../applications/video/corrscope { };
|
||||
|
||||
coreimage = libsForQt5.callPackage ../applications/graphics/coreimage { };
|
||||
|
||||
csa = callPackage ../applications/audio/csa { };
|
||||
|
||||
csound = callPackage ../applications/audio/csound {
|
||||
|
Loading…
Reference in New Issue
Block a user