nixpkgs/pkgs/servers/web-apps/wallabag/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2016-10-22 15:20:49 +00:00
stdenv.mkDerivation rec {
pname = "wallabag";
version = "2.4.2";
2016-10-22 15:20:49 +00:00
# remember to rm -r var/cache/* after a rebuild or unexpected errors will occur
src = fetchurl {
2017-04-28 13:27:44 +00:00
url = "https://static.wallabag.org/releases/wallabag-release-${version}.tar.gz";
sha256 = "1n39flqqqjih0lc86vxdzbp44x4rqj5292if2fsa8y1xxlvyqmns";
2016-10-22 15:20:49 +00:00
};
2017-12-29 15:26:40 +00:00
outputs = [ "out" ];
2016-10-22 15:20:49 +00:00
patches = [
./wallabag-data.patch # exposes $WALLABAG_DATA
];
2019-01-29 01:47:24 +00:00
dontBuild = true;
2016-10-22 15:20:49 +00:00
installPhase = ''
mkdir $out/
cp -R * $out/
'';
meta = with lib; {
2016-10-22 15:20:49 +00:00
description = "Web page archiver";
longDescription = ''
wallabag is a self hostable application for saving web pages.
Point the environment variable $WALLABAG_DATA to a data directory that contains the folder `app/config` which must be a clone of wallabag's configuration files with your customized `parameters.yml`. These need to be updated every package upgrade.
2016-10-22 15:20:49 +00:00
After a package upgrade, empty the `var/cache` folder.
'';
license = licenses.mit;
homepage = "http://wallabag.org";
maintainers = with maintainers; [ schneefux ];
2016-10-22 15:20:49 +00:00
platforms = platforms.all;
};
}