Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 38929d3ddc3d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 96e344e70e99
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Dec 25, 2019

  1. ksudoku: init at 19.08.3

    Bignaux Ronan committed Dec 25, 2019
    Copy the full SHA
    b09fa30 View commit details

Commits on Jan 5, 2020

  1. Merge pull request #76513 from bignaux/ksudoku

    ksudoku: init at 19.08.3
    nlewo authored Jan 5, 2020
    Copy the full SHA
    96e344e View commit details
Showing with 19 additions and 0 deletions.
  1. +1 −0 pkgs/applications/kde/default.nix
  2. +18 −0 pkgs/applications/kde/ksudoku.nix
1 change: 1 addition & 0 deletions pkgs/applications/kde/default.nix
Original file line number Diff line number Diff line change
@@ -146,6 +146,7 @@ let
krdc = callPackage ./krdc.nix {};
krfb = callPackage ./krfb.nix {};
kruler = callPackage ./kruler.nix {};
ksudoku = callPackage ./ksudoku.nix {};
ksystemlog = callPackage ./ksystemlog.nix {};
ktnef = callPackage ./ktnef.nix {};
ktouch = callPackage ./ktouch.nix {};
18 changes: 18 additions & 0 deletions pkgs/applications/kde/ksudoku.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{ lib
, mkDerivation
, extra-cmake-modules
, libGLU
, kdoctools
, kdeclarative
, libkdegames
}:

mkDerivation {
name = "ksudoku";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ libGLU kdeclarative libkdegames ];
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ genesis ];
};
}