nixpkgs/pkgs/servers/tt-rss/default.nix
Maximilian Bosch 161e80e3fd
treewide: get rid of invalid buildPhases argument
I don't know where this comes from (I accidentally did that as well
once), but some derivations seem to use `buildPhases` rather than
`phases` in their derivations.

This kills all improper usages as the lack of a `phases` argument
didn't break the build, so this can be safely removed.
2017-11-08 21:38:06 +01:00

27 lines
583 B
Nix

{ stdenv, fetchgit }:
stdenv.mkDerivation rec {
name = "tt-rss-${version}";
version = "17.4";
src = fetchgit {
url = "https://git.tt-rss.org/git/tt-rss.git";
rev = "refs/tags/${version}";
sha256 = "07ng21n4pva56cxnxkzd6vzs381zn67psqpm51ym5wnl644jqh08";
};
installPhase = ''
mkdir $out
cp -ra * $out/
'';
meta = with stdenv.lib; {
description = "Web-based news feed (RSS/Atom) aggregator";
license = licenses.gpl2Plus;
homepage = http://tt-rss.org;
maintainers = with maintainers; [ zohl ];
platforms = platforms.all;
};
}