screen-message: 0.26 -> 0.28
This commit is contained in:
parent
59ba511744
commit
0f12962c37
1 changed files with 7 additions and 5 deletions
|
@ -1,12 +1,14 @@
|
|||
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, gtk3 }:
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, gtk3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "screen-message";
|
||||
version = "0.26";
|
||||
version = "0.28";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://debian/pool/main/s/screen-message/screen-message_${version}.orig.tar.gz";
|
||||
sha256 = "sha256-vBKnuXOEQZDACmlNP9wjJ3NbIdixIx7I72a6Nj6pjzc=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nomeata";
|
||||
repo = "screen-message";
|
||||
rev = version;
|
||||
hash = "sha256-KHJL1N72Hc1B1m0olxoZxBHIpq/d/T3m2VdS5XC9+tk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
|
|
Loading…
Reference in a new issue