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

Commits on Dec 5, 2018

  1. dino: 2018-07-08 -> 2018-09-05

    (cherry picked from commit de825a4)
    Mic92 committed Dec 5, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    0c4650d View commit details
  2. dino: 2018-09-05 -> 2018-09-21

    (cherry picked from commit 3dec3de)
    Mic92 committed Dec 5, 2018
    Copy the full SHA
    22f639d View commit details
  3. dino: 2018-09-21 -> 2018-11-27

    (cherry picked from commit 3b44ccd)
    Mic92 committed Dec 5, 2018
    Copy the full SHA
    3faf28a View commit details
  4. dino: enable parallel building

    (cherry picked from commit a995836)
    Mic92 committed Dec 5, 2018
    Copy the full SHA
    30ab868 View commit details
  5. dino: 2018-11-27 -> 2018-11-29 (#51557)

    (cherry picked from commit 99231a3)
    schmittlauch authored and Mic92 committed Dec 5, 2018
    Copy the full SHA
    dd03932 View commit details
Showing with 7 additions and 3 deletions.
  1. +7 −3 pkgs/applications/networking/instant-messengers/dino/default.nix
10 changes: 7 additions & 3 deletions pkgs/applications/networking/instant-messengers/dino/default.nix
Original file line number Diff line number Diff line change
@@ -10,16 +10,17 @@
, dbus
, gpgme
, pcre
, qrencode
}:

stdenv.mkDerivation rec {
name = "dino-unstable-2018-07-08";
name = "dino-unstable-2018-11-29";

src = fetchFromGitHub {
owner = "dino";
repo = "dino";
rev = "df8b5fcb722c4a33ed18cbbaafecb206f127b849";
sha256 = "1r7h9pxix0sylnwab7a8lir9h5yssk98128x2bzva77id9id33vi";
rev = "680d28360c781ff29e810821801cfaba0493c526";
sha256 = "1w08xc842p2nggdxf0dwqw8izhwsrqah10w3s0v1i7dp33yhycln";
fetchSubmodules = true;
};

@@ -32,6 +33,7 @@ stdenv.mkDerivation rec {
];

buildInputs = [
qrencode
gobjectIntrospection
glib-networking
glib
@@ -55,6 +57,8 @@ stdenv.mkDerivation rec {
gettext
];

enableParallelBuilding = true;

meta = with stdenv.lib; {
description = "Modern Jabber/XMPP Client using GTK+/Vala";
homepage = https://github.com/dino/dino;