nixpkgs/pkgs/servers/meguca/default.nix

53 lines
1.6 KiB
Nix
Raw Normal View History

2018-06-27 06:31:23 +00:00
{ stdenv, buildGoPackage, fetchgit, pkgconfig, cmake, libcxx, libcxxabi
, ffmpeg-full, graphicsmagick, ghostscript, quicktemplate, go-bindata, easyjson
, nodePackages, emscripten }:
2018-05-17 23:56:58 +00:00
buildGoPackage rec {
name = "meguca-unstable-${version}";
2018-06-27 06:31:23 +00:00
version = "2018-06-27";
rev = "4780ed4c51475e5e0382fe70ff8ab2187fbbf447";
2018-05-17 23:56:58 +00:00
goPackagePath = "github.com/bakape/meguca";
goDeps = ./server_deps.nix;
src = fetchgit {
inherit rev;
url = "https://github.com/bakape/meguca";
2018-06-27 06:31:23 +00:00
sha256 = "1yc22qv5rrawlc3923a8zmhz21b00pidk1ij4fxmm9a001cm3fi3";
2018-05-17 23:56:58 +00:00
fetchSubmodules = true;
};
2018-06-21 20:38:17 +00:00
enableParallelBuilding = true;
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [
ffmpeg-full graphicsmagick ghostscript quicktemplate go-bindata easyjson
2018-06-27 06:31:23 +00:00
emscripten
] ++ stdenv.lib.optionals stdenv.isDarwin [ libcxx libcxxabi ];
2018-06-21 20:38:17 +00:00
2018-06-10 03:49:27 +00:00
buildPhase = ''
2018-05-17 23:56:58 +00:00
export HOME=$PWD
2018-06-10 03:49:27 +00:00
export GOPATH=$GOPATH:$HOME/go/src/github.com/bakape/meguca/go
cd $HOME/go/src/github.com/bakape/meguca
2018-05-17 23:56:58 +00:00
ln -sf ${nodePackages.meguca}/lib/node_modules/meguca/node_modules
sed -i "/npm install --progress false --depth 0/d" Makefile
make generate_clean
go generate meguca/...
go build -p $NIX_BUILD_CORES meguca
make -j $NIX_BUILD_CORES client wasm
'';
installPhase = ''
mkdir -p $bin/bin $bin/share/meguca
cp meguca $bin/bin
cp -r www $bin/share/meguca
'';
meta = with stdenv.lib; {
homepage = "https://github.com/bakape/meguca";
2018-06-21 20:38:17 +00:00
description = "High performance anonymous realtime imageboard";
2018-05-17 23:56:58 +00:00
license = licenses.agpl3Plus;
maintainers = with maintainers; [ chiiruno ];
platforms = platforms.all;
};
}