lol

Merge pull request #131084 from dan4ik605743/corefm

corefm: init at 4.2.0

authored by

Sandro and committed by
GitHub
17cc103a ab93cc0a

+34
+32
pkgs/applications/misc/corefm/default.nix
··· 1 + { mkDerivation, lib, fetchFromGitLab, qtbase, libcprime, libcsys, cmake, ninja }: 2 + 3 + mkDerivation rec { 4 + pname = "corefm"; 5 + version = "4.2.0"; 6 + 7 + src = fetchFromGitLab { 8 + owner = "cubocore/coreapps"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-PczKIKY9uCD+cAzAC6Gkb+g+cn9KKCQYd3epoZK8bvA="; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + cmake 16 + ninja 17 + ]; 18 + 19 + buildInputs = [ 20 + qtbase 21 + libcprime 22 + libcsys 23 + ]; 24 + 25 + meta = with lib; { 26 + description = "A lightwight filemanager from the C Suite"; 27 + homepage = "https://gitlab.com/cubocore/coreapps/corefm"; 28 + license = licenses.gpl3Plus; 29 + maintainers = with maintainers; [ dan4ik605743 ]; 30 + platforms = platforms.linux; 31 + }; 32 + }
+2
pkgs/top-level/all-packages.nix
··· 23187 23187 23188 23188 cheesecutter = callPackage ../applications/audio/cheesecutter { }; 23189 23189 23190 + corefm = libsForQt5.callPackage ../applications/misc/corefm { }; 23191 + 23190 23192 milkytracker = callPackage ../applications/audio/milkytracker { }; 23191 23193 23192 23194 ptcollab = libsForQt5.callPackage ../applications/audio/ptcollab { };