summary refs log tree commit diff
path: root/pkgs/development/libraries/rep-gtk/default.nix
blob: ab35139ce712c37c3969bf3edb58962a4f9918ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchurl, pkg-config, autoreconfHook, librep, gtk2 }:

with stdenv.lib;
stdenv.mkDerivation rec {

  pname = "rep-gtk";
  version = "0.90.8.3";
  sourceName = "rep-gtk_${version}";

  src = fetchurl {
    url = "https://download.tuxfamily.org/librep/rep-gtk/${sourceName}.tar.xz";
    sha256 = "0hgkkywm8zczir3lqr727bn7ybgg71x9cwj1av8fykkr8pdpard9";
  };

  nativeBuildInputs = [ autoreconfHook pkg-config ];
  buildInputs = [ ];
  propagatedBuildInputs = [ librep gtk2 ];

  patchPhase = ''
    sed -e 's|installdir=$(repexecdir)|installdir=$(libdir)/rep|g' -i Makefile.in
  '';

  meta = {
    description = "GTK bindings for librep";
    homepage = "http://sawfish.wikia.com";
    license = licenses.gpl2;
    maintainers = [ maintainers.AndersonTorres ];
  };
}
# TODO: investigate fetchFromGithub