pidgin-osd: 0.1.0 -> 0.2.0 (#21655)
This commit is contained in:
parent
5324a5dac7
commit
2bbbea7e8b
@ -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 ];
|
||||
|
Loading…
Reference in New Issue
Block a user