mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
21 lines
437 B
Nix
21 lines
437 B
Nix
{ lib
|
|
, mkDerivation
|
|
, extra-cmake-modules
|
|
, libGLU
|
|
, kdoctools
|
|
, kdeclarative
|
|
, libkdegames
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "ksudoku";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [ libGLU kdeclarative libkdegames ];
|
|
meta = {
|
|
homepage = "https://apps.kde.org/ksudoku/";
|
|
description = "Suduko game";
|
|
mainProgram = "ksudoku";
|
|
license = with lib.licenses; [ gpl2 ];
|
|
maintainers = [ ];
|
|
};
|
|
}
|