eternal-terminal: 5.1.10 -> 6.0.4
This commit is contained in:
parent
c50a10bf20
commit
a25d98f399
1 changed files with 13 additions and 7 deletions
|
@ -1,17 +1,23 @@
|
|||
{ stdenv, fetchFromGitHub, cmake, ninja, gflags, libsodium, protobuf }:
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, gflags
|
||||
, libsodium
|
||||
, protobuf
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "eternal-terminal";
|
||||
version = "5.1.10";
|
||||
version = "6.0.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "MisterTea";
|
||||
repo = "EternalTCP";
|
||||
rev = "refs/tags/et-v${version}";
|
||||
sha256 = "0jh89229bd9s82h3aj6faaybwr5xvnk8w2kgz47gq263pz021zpl";
|
||||
repo = "EternalTerminal";
|
||||
rev = "et-v${version}";
|
||||
sha256 = "05hbcbbxpvwm17ascnrwrz413kp3i94kp4px3vqx0f635rm41dqc";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ninja ];
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ gflags libsodium protobuf ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
@ -19,6 +25,6 @@ stdenv.mkDerivation rec {
|
|||
license = licenses.asl20;
|
||||
homepage = https://mistertea.github.io/EternalTerminal/;
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
maintainers = [ maintainers.dezgeg ];
|
||||
maintainers = with maintainers; [ dezgeg pingiun ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue