pidgin-osd: 0.1.0 -> 0.2.0 (#21655)

This commit is contained in:
edanaher 2017-01-09 00:47:59 -05:00 committed by Franz Pletz
parent 5324a5dac7
commit 2bbbea7e8b

View File

@ -1,22 +1,22 @@
{ stdenv, fetchurl, pidgin, xosd
{ stdenv, fetchFromGitHub, pidgin, xosd
, autoreconfHook } :
stdenv.mkDerivation rec {
name = "pidgin-osd-0.1.0";
src = fetchurl {
url = https://github.com/mbroemme/pidgin-osd/archive/pidgin-osd-0.1.0.tar.gz;
sha256 = "11hqfifhxa9gijbnp9kq85k37hvr36spdd79cj9bkkvw4kyrdp3j";
name = "pidgin-osd-0.2.0";
src = fetchFromGitHub {
owner = "edanaher";
repo = "pidgin-osd";
rev = name;
sha256 = "07wa9anz99hnv6kffpcph3fbq8mjbyq17ij977ggwgw37zb9fzb5";
};
makeFlags = "PIDGIN_LIBDIR=$(out)";
# autoreconf is run such that it *really* wants all the files, and there's no
# default ChangeLog. So make it happy.
preAutoreconf = "touch ChangeLog";
postInstall = ''
mkdir -p $out/lib/pidgin
ln -s $out/pidgin $out/lib/pidgin
mv $out/lib/pidgin-osd.{la,so} $out/lib/pidgin
'';
nativeBuildInputs = [ autoreconfHook ];