Merge pull request #55132 from delroth/glowing-bear

glowing-bear: init at 0.7.1
This commit is contained in:
Sarah Brofeldt 2019-02-07 12:36:05 +01:00 committed by GitHub
commit aaa2cb42b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View 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;
};
}

View file

@ -17421,6 +17421,8 @@ in
inherit (darwin) IOKit;
};
glowing-bear = callPackage ../applications/networking/irc/glowing-bear { };
gmtk = callPackage ../development/libraries/gmtk { };
gmu = callPackage ../applications/audio/gmu { };