54 lines
1.6 KiB
Nix
54 lines
1.6 KiB
Nix
{ stdenv, buildGoPackage, fetchgit, pkgconfig, cmake, ffmpeg-full, ghostscript
|
|
, graphicsmagick, quicktemplate, go-bindata, easyjson, nodePackages, emscripten }:
|
|
|
|
buildGoPackage rec {
|
|
name = "meguca-unstable-${version}";
|
|
version = "2018-07-01";
|
|
rev = "80db8298b6546c93944251c17fe03371e521671f";
|
|
goPackagePath = "github.com/bakape/meguca";
|
|
goDeps = ./server_deps.nix;
|
|
|
|
src = fetchgit {
|
|
inherit rev;
|
|
url = "https://github.com/bakape/meguca";
|
|
sha256 = "1yix0kxsjm9f3zw9jx2nb3pl8pbqjfhbvbrz42m1h20b1h02s5ml";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
|
|
buildInputs = [
|
|
ffmpeg-full graphicsmagick ghostscript quicktemplate go-bindata easyjson
|
|
emscripten
|
|
];
|
|
|
|
buildPhase = ''
|
|
export HOME=$PWD
|
|
export GOPATH=$GOPATH:$HOME/go/src/github.com/bakape/meguca/go
|
|
cd $HOME/go/src/github.com/bakape/meguca
|
|
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 -v -p $NIX_BUILD_CORES meguca
|
|
make -j $NIX_BUILD_CORES client
|
|
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
|
|
make -j $NIX_BUILD_CORES 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";
|
|
description = "High performance anonymous realtime imageboard";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ chiiruno ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|