nixpkgs/pkgs/servers/tt-rss/default.nix

26 lines
622 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2016-06-05 20:55:46 +02:00
stdenv.mkDerivation rec {
pname = "tt-rss";
version = "2021-06-21";
rev = "cd26dbe64c9b14418f0b2d826a38a35c6bf8a270";
2016-06-05 20:55:46 +02:00
src = fetchurl {
2021-01-30 11:33:15 +01:00
url = "https://git.tt-rss.org/fox/tt-rss/archive/${rev}.tar.gz";
sha256 = "1dpmzi7hknv5rk2g1iw13r8zcxcwrhkd5hhf292ml0dw3cwki0gm";
2016-06-05 20:55:46 +02:00
};
installPhase = ''
mkdir $out
cp -ra * $out/
'';
meta = with lib; {
2016-06-05 20:55:46 +02:00
description = "Web-based news feed (RSS/Atom) aggregator";
license = licenses.gpl2Plus;
homepage = "https://tt-rss.org";
maintainers = with maintainers; [ globin zohl ];
2016-06-05 20:55:46 +02:00
platforms = platforms.all;
};
}