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: 575212cf493e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 15371238766f
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 19, 2019

  1. kolf: init at 19.08.0

    peterhoeg committed Aug 19, 2019
    Copy the full SHA
    d3fd2c4 View commit details
  2. Merge pull request #66933 from peterhoeg/p/kolf

    kolf: init at 19.08.0
    ttuegel authored Aug 19, 2019
    Copy the full SHA
    1537123 View commit details
Showing with 17 additions and 0 deletions.
  1. +1 −0 pkgs/applications/kde/default.nix
  2. +16 −0 pkgs/applications/kde/kolf.nix
1 change: 1 addition & 0 deletions pkgs/applications/kde/default.nix
Original file line number Diff line number Diff line change
@@ -129,6 +129,7 @@ let
kmix = callPackage ./kmix.nix {};
kmplot = callPackage ./kmplot.nix {};
knotes = callPackage ./knotes.nix {};
kolf = callPackage ./kolf.nix {};
kolourpaint = callPackage ./kolourpaint.nix {};
kompare = callPackage ./kompare.nix {};
konsole = callPackage ./konsole.nix {};
16 changes: 16 additions & 0 deletions pkgs/applications/kde/kolf.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
, libkdegames, kconfig, kio, ktextwidgets
}:

mkDerivation {
name = "kolf";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ libkdegames kio ktextwidgets ];
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ peterhoeg ];
};
}