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

Commits on Sep 8, 2017

  1. centerim: 4.22.10 -> 5.0.1

    Lassulus committed Sep 8, 2017
    Copy the full SHA
    7269934 View commit details
  2. Merge pull request #29120 from Lassulus/ceneterim-update

    centerim: 4.22.10 -> 5.0.1
    fpletz authored Sep 8, 2017
    Copy the full SHA
    6f292e9 View commit details
Showing with 13 additions and 10 deletions.
  1. +13 −10 pkgs/applications/networking/instant-messengers/centerim/default.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
{stdenv, fetchurl, openssl, curl, ncurses, libjpeg
{stdenv, fetchurl, gnused, openssl, curl, ncurses, libjpeg
, withGpg ? true, gpgme ? null}:

stdenv.mkDerivation rec {
version = "4.22.10";
debPatch = "2";
name = "centerim-${version}";
version = "5.0.1";
name = "centerim5-${version}";

src = fetchurl {
url = "http://centerim.org/download/releases/${name}.tar.gz";
url = "http://centerim.org/download/cim5/${name}.tar.gz";
sha256 = "0viz86jflp684vfginhl6aaw4gh2qvalc25anlwljjl3kkmibklk";
};
patches = fetchurl {
url = "mirror://debian/pool/main/c/centerim/centerim_${version}-${debPatch}.diff.gz";
sha256 = "18iz3hkvr31jsyznryvyldxm9ckyrpy9sczxikrnw2i2r1xyfj8m";
};

CXXFLAGS = "-std=gnu++98";

buildInputs = [ openssl curl ncurses libjpeg ]
++ stdenv.lib.optional withGpg gpgme;

configureFlags = [ "--with-openssl=${openssl.dev}" ];
preConfigure = ''
${gnused}/bin/sed -i '1,1i#include <stdio.h>' libicq2000/libicq2000/sigslot.h
'';

configureFlags = [
"--with-openssl=${openssl.dev}"
];

meta = {
homepage = http://www.centerim.org/;