Merge pull request #55132 from delroth/glowing-bear
glowing-bear: init at 0.7.1
This commit is contained in:
commit
aaa2cb42b1
2 changed files with 29 additions and 0 deletions
27
pkgs/applications/networking/irc/glowing-bear/default.nix
Normal file
27
pkgs/applications/networking/irc/glowing-bear/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ fetchFromGitHub, stdenv }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "glowing-bear-${version}";
|
||||||
|
version = "0.7.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
rev = version;
|
||||||
|
owner = "glowing-bear";
|
||||||
|
repo = "glowing-bear";
|
||||||
|
sha256 = "0gwrf67l3i3nl7zy1miljz6f3vv6zzc3g9as06by548f21cizzjb";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir $out
|
||||||
|
cp index.html min.js serviceworker.js webapp.manifest.json $out
|
||||||
|
cp -R 3rdparty assets css directives js $out
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A web client for Weechat";
|
||||||
|
homepage = https://github.com/glowing-bear/glowing-bear;
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ delroth ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -17421,6 +17421,8 @@ in
|
||||||
inherit (darwin) IOKit;
|
inherit (darwin) IOKit;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
glowing-bear = callPackage ../applications/networking/irc/glowing-bear { };
|
||||||
|
|
||||||
gmtk = callPackage ../development/libraries/gmtk { };
|
gmtk = callPackage ../development/libraries/gmtk { };
|
||||||
|
|
||||||
gmu = callPackage ../applications/audio/gmu { };
|
gmu = callPackage ../applications/audio/gmu { };
|
||||||
|
|
Loading…
Reference in a new issue