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

Commits on Nov 1, 2019

  1. qtbitcointrader: 1.40.41 -> 1.40.43

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/qtbitcointrader/versions
    r-ryantm authored and ehmry committed Nov 1, 2019
    Copy the full SHA
    1a40258 View commit details
  2. Copy the full SHA
    b3cf2d2 View commit details
Showing with 5 additions and 5 deletions.
  1. +4 −4 pkgs/applications/misc/qtbitcointrader/default.nix
  2. +1 −1 pkgs/top-level/all-packages.nix
8 changes: 4 additions & 4 deletions pkgs/applications/misc/qtbitcointrader/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ stdenv, fetchzip, qt5 }:
{ stdenv, fetchzip, qt5, mkDerivation }:

let
version = "1.40.41";
version = "1.40.43";
in
stdenv.mkDerivation {
mkDerivation {
pname = "qtbitcointrader";
inherit version;

src = fetchzip {
url = "https://github.com/JulyIGHOR/QtBitcoinTrader/archive/v${version}.tar.gz";
sha256 = "0v2rqzswqxfhxvkj1i7b48sd6kbj3w9issvn05yhp7bx75gwns4p";
sha256 = "07xbsi78cykpyxidp1bw5ahmymdrs2afg7b0lla7dfhagz18lzxv";
};

buildInputs = [ qt5.qtbase qt5.qtmultimedia qt5.qtscript ];
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -20543,7 +20543,7 @@ in

qsynth = libsForQt5.callPackage ../applications/audio/qsynth { };

qtbitcointrader = callPackage ../applications/misc/qtbitcointrader { };
qtbitcointrader = libsForQt5.callPackage ../applications/misc/qtbitcointrader { };

qtchan = libsForQt5.callPackage ../applications/networking/browsers/qtchan { };