161e80e3fd
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.
28 lines
634 B
Nix
28 lines
634 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "selfoss-unstable-${version}";
|
|
version = "2016-07-31";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SSilence";
|
|
repo = "selfoss";
|
|
rev = "ceb431ad9208e2c5e31dafe593c75e5eb8b65cf7";
|
|
sha256 = "00vrpw7sb95x6lwpaxrlzxyj98k98xblqcrjr236ykv0ha97xv30";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp -ra * $out/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Web-based news feed (RSS/Atom) aggregator";
|
|
license = licenses.gpl3;
|
|
homepage = http://http://selfoss.aditu.de/;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.regnat ];
|
|
};
|
|
}
|
|
|