forked from mirrors/nixpkgs
Merge pull request #12869 from Profpatsch/screen-message
screen-message: add git mirror (darcs fails)
This commit is contained in:
commit
5d3708ae66
|
@ -1,11 +1,12 @@
|
||||||
{ stdenv, fetchdarcs, autoreconfHook, pkgconfig, gtk3 }:
|
{ stdenv, fetchgit, autoreconfHook, pkgconfig, gtk3 }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "screen-message-0.23";
|
name = "screen-message-0.23";
|
||||||
|
|
||||||
src = fetchdarcs {
|
srcs = fetchgit {
|
||||||
url = "http://darcs.nomeata.de/screen-message.debian";
|
url = "git://git.nomeata.de/darcs-mirror-screen-message.debian.git";
|
||||||
rev = "0.23-1";
|
rev = "refs/tags/0_23-1";
|
||||||
|
sha256 = "fddddd28703676b2908af71cca7225e6c7bdb15b2fdfd67679cac129028a431c";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ autoreconfHook pkgconfig gtk3 ];
|
buildInputs = [ autoreconfHook pkgconfig gtk3 ];
|
||||||
|
|
Loading…
Reference in a new issue