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: a9611a52f3f0^
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7d09138caec4
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Nov 30, 2016

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    a9611a5 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0707962 View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    7d09138 View commit details
Original file line number Diff line number Diff line change
@@ -4,19 +4,19 @@

stdenv.mkDerivation rec {
name = "mcabber-${version}";
version = "1.0.3";
version = "1.0.4";

src = fetchurl {
url = "http://mcabber.com/files/mcabber-${version}.tar.bz2";
sha256 = "16hkb7v1sqp1gqj94darwwrv23alqaiqdhqjq8gjd6f3l05bprj4";
sha256 = "02nfn5r7cjpnacym95l6bvczii232v3x2gi79gfa9syc7w0brdk3";
};

buildInputs = [ openssl ncurses pkgconfig glib loudmouth libotr gpgme ];

configureFlags = "--with-openssl=${openssl.dev} --enable-modules --enable-otr";

doCheck = true;

meta = with stdenv.lib; {
homepage = http://mcabber.com/;
description = "Small Jabber console client";
6 changes: 3 additions & 3 deletions pkgs/development/interpreters/mujs/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, fetchgit, clang }:

stdenv.mkDerivation rec {
name = "mujs-2016-09-21";
name = "mujs-2016-11-30";

src = fetchgit {
url = git://git.ghostscript.com/mujs.git;
rev = "5c337af4b3df80cf967e4f9f6a21522de84b392a";
sha256 = "1x5g6nycggc83md2dbr2nahjbkkmmn64bg25a8hih7z72sw41dgw";
rev = "a0ceaf5050faf419401fe1b83acfa950ec8a8a89";
sha256 = "13abghhqrivaip4h0fav80i8hid220dj0ddc1xnhn6w9rbnrriyg";
};

buildInputs = [ clang ];
4 changes: 2 additions & 2 deletions pkgs/development/perl-modules/DBD-mysql/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ fetchurl, buildPerlPackage, DBI, mysql }:

buildPerlPackage rec {
name = "DBD-mysql-4.033";
name = "DBD-mysql-4.039";

src = fetchurl {
url = "mirror://cpan/authors/id/C/CA/CAPTTOFU/${name}.tar.gz";
sha256 = "0769xakykps0cx368g4vaips4w3bjk383rianiavq7sq6g6bp66c";
sha256 = "0k4p3bjdbmxm2amb0qiiwmn8v83zrjkz5qp84xdjrg8k5v9aj0hn";
};

buildInputs = [ mysql.lib ] ;