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

Commits on Feb 18, 2019

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Mic92 Jörg Thalheim
    Copy the full SHA
    99d3982 View commit details

Commits on Feb 21, 2019

  1. Merge pull request #55977 from dtzWill/update/kvantum-0.10.9

    libsForQt.qtstyleplugin-kvantum: 0.10.8 -> 0.10.9
    dtzWill authored Feb 21, 2019
    Copy the full SHA
    fa2dcfe View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/libraries/qtstyleplugin-kvantum/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/libraries/qtstyleplugin-kvantum/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{ stdenv, fetchFromGitHub, qmake, qtbase, qtsvg, qtx11extras, libX11, libXext, qttools }:
{ stdenv, fetchFromGitHub, qmake, qtbase, qtsvg, qtx11extras, kwindowsystem, libX11, libXext, qttools }:

stdenv.mkDerivation rec {
pname = "qtstyleplugin-kvantum";
version = "0.10.8";
version = "0.10.9";

src = fetchFromGitHub {
owner = "tsujan";
repo = "Kvantum";
rev = "V${version}";
sha256 = "0w4iqpkagrwvhahdl280ni06b7x1i621n3z740g84ysp2n3dv09l";
sha256 = "1zpq6wsl57kfx0jf0rkxf15ic22ihazj03i3kfiqb07vcrs2cka9";
};

nativeBuildInputs = [ qmake qttools ];
buildInputs = [ qtbase qtsvg qtx11extras libX11 libXext ];
buildInputs = [ qtbase qtsvg qtx11extras kwindowsystem libX11 libXext ];

sourceRoot = "source/Kvantum";