nixpkgs/pkgs/servers/meguca/default.nix

51 lines
1.5 KiB
Nix
Raw Normal View History

2019-03-23 06:17:52 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub, pkgconfig, cmake, ffmpeg-full
, ghostscript, graphicsmagick, quicktemplate, go-bindata, easyjson
, nodePackages, emscripten, opencv, statik }:
2018-05-17 23:56:58 +00:00
buildGoPackage rec {
name = "meguca-unstable-${version}";
2019-03-23 06:17:52 +00:00
version = "2019-03-12";
2018-05-17 23:56:58 +00:00
goPackagePath = "github.com/bakape/meguca";
goDeps = ./server_deps.nix;
2018-08-03 15:43:28 +00:00
src = fetchFromGitHub {
owner = "bakape";
repo = "meguca";
2019-03-23 06:17:52 +00:00
rev = "21b08de09b38918061c5cd0bbd0dc9bcc1280525";
sha256 = "1nb3bf1bscbdma83sp9fbgvmxxlxh21j9h80wakfn85sndcrws5i";
2018-05-17 23:56:58 +00:00
fetchSubmodules = true;
};
2018-06-21 20:38:17 +00:00
enableParallelBuilding = true;
nativeBuildInputs = [ pkgconfig cmake ];
2019-03-23 06:17:52 +00:00
buildInputs = [
ffmpeg-full graphicsmagick ghostscript quicktemplate go-bindata
easyjson emscripten opencv statik
];
2018-06-21 20:38:17 +00:00
2018-06-10 03:49:27 +00:00
buildPhase = ''
2018-08-03 15:43:28 +00:00
export HOME=`pwd`
2019-03-23 06:17:52 +00:00
cd 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
2019-03-23 06:17:52 +00:00
make -j $NIX_BUILD_CORES generate all
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
make -j $NIX_BUILD_CORES wasm
2018-05-17 23:56:58 +00:00
'';
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;
};
}