ksmoothdock: Init at 6.2 stable
This commit is contained in:
parent
dd8f077ff9
commit
f26f911a77
2 changed files with 45 additions and 0 deletions
43
pkgs/applications/misc/ksmoothdock/default.nix
Normal file
43
pkgs/applications/misc/ksmoothdock/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ lib
|
||||
, mkDerivation
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, cmake
|
||||
, extra-cmake-modules
|
||||
, kactivities
|
||||
, qtbase
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "KSmoothDock";
|
||||
version = "6.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dangvd";
|
||||
repo = "ksmoothdock";
|
||||
rev = "v${version}";
|
||||
sha256 = "182x47cymgnp5xisa0xx93hmd5wrfigy8zccrr23p4r9hp8xbnam";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Fixed hard coded installation path to use CMAKE_INSTALL_BINDIR and CMAKE_INSTALL_PREFIX instead
|
||||
(fetchpatch {
|
||||
url = "https://github.com/dangvd/ksmoothdock/commit/00799bef8a1c1fe61ef9274866267d9fe9194041.patch";
|
||||
sha256 = "1nmb7gf1ggzicxz8k4fd67xhwjy404myqzjpgjym66wqxm0arni4";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
||||
|
||||
buildInputs = [ kactivities qtbase ];
|
||||
|
||||
cmakeDir = "../src";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A cool desktop panel for KDE Plasma 5";
|
||||
license = licenses.mit;
|
||||
homepage = "https://dangvd.github.io/ksmoothdock/";
|
||||
maintainers = with maintainers; [ shamilton ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -4582,6 +4582,8 @@ in
|
|||
|
||||
peruse = libsForQt5.callPackage ../tools/misc/peruse { };
|
||||
|
||||
ksmoothdock = libsForQt5.callPackage ../applications/misc/ksmoothdock { };
|
||||
|
||||
kst = libsForQt5.callPackage ../tools/graphics/kst { gsl = gsl_1; };
|
||||
|
||||
kstars = libsForQt5.callPackage ../applications/science/astronomy/kstars { };
|
||||
|
|
Loading…
Reference in a new issue