mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
ff3e3fb39d
This greatly reduced the build duration.
31 lines
853 B
Nix
31 lines
853 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, libzip, boost, wt3, libconfig, pkgconfig } :
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fileshelter";
|
|
version = "3.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "epoupon";
|
|
repo = "fileshelter";
|
|
rev = "v${version}";
|
|
sha256 = "1n9hrls3l9gf8wfz6m9bylma1b1hdvdqsksv2dlp1zdgjdzv200b";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ libzip boost wt3 libconfig ];
|
|
|
|
postInstall = ''
|
|
ln -s ${wt3}/share/Wt/resources $out/share/fileshelter/docroot/resources
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/epoupon/fileshelter;
|
|
description = "FileShelter is a 'one-click' file sharing web application";
|
|
maintainers = [ maintainers.willibutz ];
|
|
license = licenses.gpl3;
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|