nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 53 lines 997 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitLab, 5 kdePackages, 6 xorg, 7 cmake, 8 ninja, 9 libcprime, 10 libcsys, 11}: 12 13stdenv.mkDerivation (finalAttrs: { 14 pname = "corestuff"; 15 version = "5.0.0"; 16 17 src = fetchFromGitLab { 18 owner = "cubocore/coreapps"; 19 repo = "corestuff"; 20 tag = "v${finalAttrs.version}"; 21 hash = "sha256-/EI7oM7c7GKEQ+XQSiWwkJ7uNrJkxgLXEXZ6r5Jqh70="; 22 }; 23 24 patches = [ 25 # Remove autostart 26 ./0001-fix-installPhase.patch 27 ]; 28 29 nativeBuildInputs = [ 30 cmake 31 ninja 32 kdePackages.wrapQtAppsHook 33 ]; 34 35 buildInputs = [ 36 kdePackages.qtbase 37 kdePackages.kglobalaccel 38 xorg.libXcomposite 39 libcprime 40 libcsys 41 ]; 42 43 meta = { 44 description = "Activity viewer from the C Suite"; 45 mainProgram = "corestuff"; 46 homepage = "https://gitlab.com/cubocore/coreapps/corestuff"; 47 license = lib.licenses.gpl3Plus; 48 maintainers = with lib.maintainers; [ ]; 49 platforms = lib.platforms.linux; 50 # Address boundary error 51 broken = true; 52 }; 53})