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

Commits on Oct 21, 2019

  1. lxqt.qps: 1.10.20 -> 2.0.0

    romildo committed Oct 21, 2019
    Copy the full SHA
    9100741 View commit details
  2. Copy the full SHA
    ea1c52a View commit details
  3. Merge pull request #71158 from romildo/upd.qps

    lxqt.qps: 1.10.20 -> 2.0.0
    c0bw3b authored Oct 21, 2019
    Copy the full SHA
    290b5ee View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/desktops/lxqt/qps/default.nix
8 changes: 4 additions & 4 deletions pkgs/desktops/lxqt/qps/default.nix
Original file line number Diff line number Diff line change
@@ -3,24 +3,24 @@

mkDerivation rec {
pname = "qps";
version = "1.10.20";
version = "2.0.0";

src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
sha256 = "1g8j4cjy5x33jzjkx6vwyl5qbf9i2z2w01ipgk7nrik5drf9crbf";
sha256 = "03rl59yk3b24j0y0k8dpdpb3yi4f1l642zn5pp5br3s2vwx1vzkg";
};

nativeBuildInputs = [ cmake lxqt-build-tools ];

buildInputs = [ qtbase qtx11extras qttools ];

meta = with lib; {
description = "The Qt process manager";
description = "Qt based process manager";
homepage = https://github.com/lxqt/qps;
license = licenses.gpl2;
platforms = with platforms; linux; # does not build on darwin
maintainers = with maintainers; [ romildo ];
platforms = with platforms; unix;
};
}