mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
531e4b80c9
Only acts on one-line dependency lists.
31 lines
818 B
Nix
31 lines
818 B
Nix
{ stdenv, fetchurl, pkgconfig, autoreconfHook, librep, gtk2 }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "rep-gtk-${version}";
|
|
version = "0.90.8.3";
|
|
sourceName = "rep-gtk_${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.tuxfamily.org/librep/rep-gtk/${sourceName}.tar.xz";
|
|
sha256 = "0hgkkywm8zczir3lqr727bn7ybgg71x9cwj1av8fykkr8pdpard9";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
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
|