python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / rep-gtk / default.nix
blob433da05d088fa8c7e7409c3ea98b2a17c9cfb33a
1 { lib
2 , stdenv
3 , fetchurl
4 , autoreconfHook
5 , gtk2
6 , librep
7 , pkg-config
8 }:
10 stdenv.mkDerivation rec {
11   pname = "rep-gtk";
12   version = "0.90.8.3";
14   src = fetchurl {
15     url = "https://download.tuxfamily.org/librep/${pname}/${pname}_${version}.tar.xz";
16     sha256 = "0hgkkywm8zczir3lqr727bn7ybgg71x9cwj1av8fykkr8pdpard9";
17   };
19   nativeBuildInputs = [
20     autoreconfHook
21     pkg-config
22   ];
23   buildInputs = [
24     gtk2
25     librep
26   ];
28   patchPhase = ''
29     sed -e 's|installdir=$(repexecdir)|installdir=$(libdir)/rep|g' -i Makefile.in
30   '';
32   meta = with lib; {
33     homepage = "http://sawfish.tuxfamily.org";
34     description = "GTK bindings for librep";
35     license = licenses.gpl2Plus;
36     maintainers = [ maintainers.AndersonTorres ];
37     platforms = platforms.unix;
38   };
40 # TODO: investigate fetchFromGithub