Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / tt-rss / default.nix
blob842fbb7015b4b85ae4e8a3620070eb007190ee40
1 { lib, stdenv, fetchgit }:
3 stdenv.mkDerivation rec {
4   pname = "tt-rss";
5   version = "unstable-2023-04-13";
7   src = fetchgit {
8     url = "https://git.tt-rss.org/fox/tt-rss.git";
9     rev = "0578bf802571781a0a7e3debbbec66437a7d28b4";
10     hash = "sha256-j6R1QoH8SzUtyI3rGE6rHriboAfApAo/Guw8WbJ7LqU=";
11   };
13   installPhase = ''
14     runHook preInstall
16     mkdir $out
17     cp -ra * $out/
19     # see the code of Config::get_version(). you can check that the version in
20     # the footer of the preferences pages is not UNKNOWN
21     echo "23.04" > $out/version_static.txt
23     runHook postInstall
24   '';
26   meta = with lib; {
27     description = "Web-based news feed (RSS/Atom) aggregator";
28     license = licenses.gpl2Plus;
29     homepage = "https://tt-rss.org";
30     maintainers = with maintainers; [ globin zohl ];
31     platforms = platforms.all;
32   };