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: b22c62915fda
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b07e04882e32
Choose a head ref
  • 2 commits
  • 5 files changed
  • 1 contributor

Commits on May 11, 2017

  1. libkcddb: init at 17.04.0

    peterhoeg committed May 11, 2017

    Verified

    This commit was signed with the committer’s verified signature.
    mcollina Matteo Collina
    Copy the full SHA
    6c79df3 View commit details
  2. k3b: 2.0.3a -> 17.04.0

    peterhoeg committed May 11, 2017
    Copy the full SHA
    b07e048 View commit details
Showing with 62 additions and 50 deletions.
  1. +2 −0 pkgs/applications/kde/default.nix
  2. +41 −0 pkgs/applications/kde/k3b.nix
  3. +18 −0 pkgs/applications/kde/libkcddb.nix
  4. +0 −47 pkgs/applications/misc/k3b/default.nix
  5. +1 −3 pkgs/top-level/all-packages.nix
2 changes: 2 additions & 0 deletions pkgs/applications/kde/default.nix
Original file line number Diff line number Diff line change
@@ -59,6 +59,7 @@ let
ffmpegthumbs = callPackage ./ffmpegthumbs.nix { };
filelight = callPackage ./filelight.nix {};
gwenview = callPackage ./gwenview.nix {};
k3b = callPackage ./k3b.nix {};
kate = callPackage ./kate.nix {};
kdenlive = callPackage ./kdenlive.nix {};
kcalc = callPackage ./kcalc.nix {};
@@ -80,6 +81,7 @@ let
konsole = callPackage ./konsole.nix {};
krfb = callPackage ./krfb.nix {};
kwalletmanager = callPackage ./kwalletmanager.nix {};
libkcddb = callPackage ./libkcddb.nix {};
libkdcraw = callPackage ./libkdcraw.nix {};
libkexiv2 = callPackage ./libkexiv2.nix {};
libkipi = callPackage ./libkipi.nix {};
41 changes: 41 additions & 0 deletions pkgs/applications/kde/k3b.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{ kdeApp, lib, kdeWrapper, extra-cmake-modules
, qtwebkit
, libkcddb, kcmutils, kdoctools, kfilemetadata, knewstuff, knotifyconfig, solid, kxmlgui
, flac, lame, libmad, libmpcdec, libvorbis
, libsamplerate, libsndfile, taglib
, cdparanoia, cdrdao, cdrtools, dvdplusrwtools, libburn, libdvdcss, libdvdread, vcdimager
, ffmpeg, libmusicbrainz2, normalize, sox, transcode
}:

let
unwrapped =
kdeApp {
name = "k3b";
meta = with lib; {
license = with licenses; [ gpl2Plus ];
maintainers = with maintainers; [ sander phreedom ];
platforms = platforms.linux;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [
# qt
qtwebkit
# kde
libkcddb kcmutils kfilemetadata knewstuff knotifyconfig solid kxmlgui
# formats
flac lame libmad libmpcdec libvorbis
# sound utilities
libsamplerate libsndfile taglib
# cd/dvd
cdparanoia libdvdcss libdvdread
# others
ffmpeg libmusicbrainz2
];
enableParallelBuilding = true;
};

in kdeWrapper {
inherit unwrapped;
targets = [ "bin/k3b" ];
paths = [ cdrdao cdrtools dvdplusrwtools libburn normalize sox transcode vcdimager ];
}
18 changes: 18 additions & 0 deletions pkgs/applications/kde/libkcddb.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{ kdeApp, lib, extra-cmake-modules, qtbase, kdoctools
, kcodecs, ki18n, kio, kwidgetsaddons
, libmusicbrainz5 }:

kdeApp {
name = "libkcddb";
meta = with lib; {
license = with licenses; [ gpl2 lgpl21 bsd3 ];
maintainers = with maintainers; [ peterhoeg ];
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtbase kdoctools ];
propagatedBuildInputs = [
kcodecs ki18n kio kwidgetsaddons
libmusicbrainz5
];
enableParallelBuilding = true;
}
47 changes: 0 additions & 47 deletions pkgs/applications/misc/k3b/default.nix

This file was deleted.

4 changes: 1 addition & 3 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -14462,9 +14462,7 @@ with pkgs;
boost = boost155;
};

k3b-original = lowPrio (kde4.callPackage ../applications/misc/k3b { });

k3b = kde4.callPackage ../applications/misc/k3b/wrapper.nix { };
k3b = kdeApplications.k3b;

k9copy = libsForQt5.callPackage ../applications/video/k9copy {};