wallabag: 2.2.3 -> 2.3.1

This commit is contained in:
schneefux 2017-12-29 16:26:40 +01:00
parent 504016f753
commit 40ab1bed8a
No known key found for this signature in database
GPG key ID: 50F2BF336737C2F0

View file

@ -2,16 +2,16 @@
stdenv.mkDerivation rec {
name = "wallabag-${version}";
version = "2.2.3";
version = "2.3.1";
# remember to rm -r var/cache/* after a rebuild or unexpected errors will occur
src = fetchurl {
url = "https://static.wallabag.org/releases/wallabag-release-${version}.tar.gz";
sha256 = "0myqarwny9p53g2gmwmg1mcn17jlx5ah0bri13panhf7ryvmrzhk";
sha256 = "1qk7jicni5g8acpjybrwnwf7zknk3b0mxiv5876lrsajcxdxwnf4";
};
outputs = [ "out" "doc" ];
outputs = [ "out" ];
patchPhase = ''
rm Makefile # use the "shared hosting" package with bundled dependencies
@ -22,8 +22,6 @@ stdenv.mkDerivation rec {
''; # exposes $WALLABAG_DATA
installPhase = ''
mkdir -p $doc/share/doc
mv docs $doc/share/doc/wallabag
mkdir $out/
cp -R * $out/
'';