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

Commits on Mar 22, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    infinisil Silvan Mosberger
    Copy the full SHA
    68a48c8 View commit details

Commits on Mar 23, 2019

  1. Merge pull request #58142 from dtzWill/update/qt5ct-0.38

    qt5ct: 0.37 -> 0.38
    dywedir authored Mar 23, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    infinisil Silvan Mosberger
    Copy the full SHA
    ccaf6d4 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/misc/qt5ct/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/misc/qt5ct/default.nix
Original file line number Diff line number Diff line change
@@ -3,12 +3,12 @@
let inherit (stdenv.lib) getDev; in

stdenv.mkDerivation rec {
name = "qt5ct-${version}";
version = "0.37";
pname = "qt5ct";
version = "0.38";

src = fetchurl {
url = "mirror://sourceforge/qt5ct/${name}.tar.bz2";
sha256 = "0n8csvbpislxjr2s1xi8r5a4q4bqn4kylcy2zws6w7z4m8pdzrny";
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
sha256 = "0p0317z79h906qwaf0p8ga6lmr1dlabkx12gn31bv9lnp9f55jwg";
};

nativeBuildInputs = [ qmake qttools ];