pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / servers / web-apps / fileshelter / default.nix
blob337f178a1c507aa58e2c203f3069f6761943da28
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, libzip, boost, wt4, libconfig, pkg-config } :
3 stdenv.mkDerivation rec {
4   pname = "fileshelter";
5   version = "4.0.1";
7   src = fetchFromGitHub {
8     owner = "epoupon";
9     repo = "fileshelter";
10     rev = "v${version}";
11     sha256 = "07n70wwqj7lqdxs3wya1m8bwg8l6lgmmlfpwyv3r3s4dfzb1b3ka";
12   };
14   enableParallelBuilding = true;
16   nativeBuildInputs = [ autoreconfHook pkg-config ];
17   buildInputs = [ libzip boost wt4 libconfig ];
19   NIX_LDFLAGS = "-lpthread";
21   postInstall = ''
22     ln -s ${wt4}/share/Wt/resources $out/share/fileshelter/docroot/resources
23   '';
25   meta = with lib; {
26     homepage = "https://github.com/epoupon/fileshelter";
27     description = "FileShelter is a 'one-click' file sharing web application";
28     mainProgram = "fileshelter";
29     maintainers = [ maintainers.willibutz ];
30     license = licenses.gpl3;
31     platforms = [ "x86_64-linux" ];
32   };