mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
screen-message: 0.23 -> 0.24
This commit is contained in:
parent
dd07a28e5d
commit
90e8e00097
1 changed files with 9 additions and 8 deletions
|
@ -1,15 +1,16 @@
|
|||
{ stdenv, fetchgit, autoreconfHook, pkgconfig, gtk3 }:
|
||||
{ stdenv, fetchurl, autoreconfHook, pkgconfig, gtk3 }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "screen-message-0.23";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "screen-message-${version}";
|
||||
version = "0.24";
|
||||
|
||||
srcs = fetchgit {
|
||||
url = "git://git.nomeata.de/darcs-mirror-screen-message.debian.git";
|
||||
rev = "refs/tags/0_23-1";
|
||||
sha256 = "fddddd28703676b2908af71cca7225e6c7bdb15b2fdfd67679cac129028a431c";
|
||||
src = fetchurl {
|
||||
url = "mirror://debian/pool/main/s/screen-message/screen-message_${version}.orig.tar.gz";
|
||||
sha256 = "1v03axr7471fmzxccl3ckv73j8gfcj615y5maxvm5phy0sd6rl49";
|
||||
};
|
||||
|
||||
buildInputs = [ autoreconfHook pkgconfig gtk3 ];
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
buildInputs = [ gtk3 ];
|
||||
|
||||
# screen-message installs its binary in $(prefix)/games per default
|
||||
makeFlags = [ "execgamesdir=$(out)/bin" ];
|
||||
|
|
Loading…
Reference in a new issue