From 2eea0f646c2c95232cd7baa70d0e68dd0e13cfd3 Mon Sep 17 00:00:00 2001 From: aszlig Date: Wed, 4 Apr 2018 21:43:13 +0200 Subject: Remove my patched version of Gajim everywhere The config.patch doesn't apply for Gajim 1.0 anymore anyway, so let's throw everything away, including my custom config in order to start with a new abomination. With the new approach, I'm going to patch the configuration defaults *directly* into Gajim, because one of the problems with the old approach was that whenever specifics about a configuration value has changed, I didn't get noticed by a patch failure. So in the end the config I was ending up was a big mess. I'm going to start this with a new unpatched version and someday get to a patched version that I'm staisfied with... hopefully ;-) Signed-off-by: aszlig --- pkgs/aszlig/default.nix | 3 +-- pkgs/aszlig/gajim/default.nix | 33 --------------------------------- 2 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 pkgs/aszlig/gajim/default.nix (limited to 'pkgs/aszlig') diff --git a/pkgs/aszlig/default.nix b/pkgs/aszlig/default.nix index acc2256b..d2bbeb77 100644 --- a/pkgs/aszlig/default.nix +++ b/pkgs/aszlig/default.nix @@ -1,9 +1,8 @@ -{ callPackage, callPackage_i686, boost155, gajim, vim_configurable, xournal }: +{ callPackage, callPackage_i686, vim_configurable, xournal }: { aacolorize = callPackage ./aacolorize { }; axbo = callPackage ./axbo { }; - gajim = callPackage ./gajim { inherit gajim; }; git-detach = callPackage ./git-detach { }; grandpa = callPackage ./grandpa { }; librxtx_java = callPackage ./librxtx-java { }; diff --git a/pkgs/aszlig/gajim/default.nix b/pkgs/aszlig/gajim/default.nix deleted file mode 100644 index 840aa9a1..00000000 --- a/pkgs/aszlig/gajim/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ stdenv, fetchurl, fetchpatch, gmp, pythonPackages -, gajim -}: - -(gajim.override { - pythonPackages = pythonPackages // { - pycrypto = pythonPackages.buildPythonPackage rec { - name = "pycrypto-${version}"; - version = "2.6.1"; - - src = fetchurl { - url = "mirror://pypi/p/pycrypto/${name}.tar.gz"; - sha256 = "0g0ayql5b9mkjam8hym6zyg6bv77lbh66rv1fyvgqb17kfc1xkpj"; - }; - - patches = stdenv.lib.singleton (fetchpatch { - name = "CVE-2013-7459.patch"; - url = "https://anonscm.debian.org/cgit/collab-maint/python-crypto.git" - + "/plain/debian/patches/CVE-2013-7459.patch?h=debian/2.6.1-7"; - sha256 = "01r7aghnchc1bpxgdv58qyi2085gh34bxini973xhy3ks7fq3ir9"; - }); - - buildInputs = [ gmp ]; - - preConfigure = '' - sed -i 's,/usr/include,/no-such-dir,' configure - sed -i "s!,'/usr/include/'!!" setup.py - ''; - }; - }; -}) // { - meta = gajim.meta // { platforms = [ "x86_64-linux" ]; }; -} -- cgit 1.4.1