Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 33 lines 707 B view raw
1{ 2 mkDerivation, 3 lib, 4 libkdegames, 5 extra-cmake-modules, 6 kdeclarative, 7 knewstuff, 8}: 9 10mkDerivation { 11 pname = "picmi"; 12 meta = with lib; { 13 homepage = "https://apps.kde.org/picmi/"; 14 description = "Nonogram game"; 15 mainProgram = "picmi"; 16 longDescription = '' 17 The goal is to reveal the hidden pattern in the board by coloring or 18 leaving blank the cells in a grid according to numbers given at the side of the grid. 19 ''; 20 maintainers = with maintainers; [ freezeboy ]; 21 license = licenses.gpl2Plus; 22 platforms = platforms.linux; 23 }; 24 25 nativeBuildInputs = [ 26 extra-cmake-modules 27 ]; 28 buildInputs = [ 29 kdeclarative 30 knewstuff 31 libkdegames 32 ]; 33}