Skip to content

Commit

Permalink
pidgin-osd: 0.1.0 -> 0.2.0 (#21655)
Browse files Browse the repository at this point in the history
  • Loading branch information
edanaher authored and fpletz committed Jan 9, 2017
1 parent 5324a5d commit 2bbbea7
Showing 1 changed file with 8 additions and 8 deletions.
@@ -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 ];
Expand Down

0 comments on commit 2bbbea7

Please sign in to comment.