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

28 lines
662 B
Nix
Raw Normal View History

{ stdenv, fetchurl, unzip }:
2016-09-09 12:08:46 +00:00
stdenv.mkDerivation rec {
name = "selfoss-${version}";
version = "2.18";
2016-09-09 12:08:46 +00:00
src = fetchurl {
url = "https://github.com/SSilence/selfoss/releases/download/${version}/${name}.zip";
sha256 = "1vd699r1kjc34n8avggckx2b0daj5rmgrj997sggjw2inaq4cg8b";
2016-09-09 12:08:46 +00:00
};
sourceRoot = ".";
nativeBuildInputs = [ unzip ];
2016-09-09 12:08:46 +00:00
installPhase = ''
mkdir $out
cp -ra * $out/
'';
meta = with stdenv.lib; {
description = "Web-based news feed (RSS/Atom) aggregator";
2018-07-05 08:37:59 +00:00
homepage = https://selfoss.aditu.de;
2016-09-09 12:08:46 +00:00
license = licenses.gpl3;
2018-07-05 08:37:59 +00:00
maintainers = with maintainers; [ jtojnar regnat ];
2016-09-09 12:08:46 +00:00
platforms = platforms.all;
};
}