rainloop-standard: Fix pname and license (#73963)
- Switched to pname - Fixed the double dash in pname - Changed license to unfree (they don't allow redistribution) Fixes #73956
This commit is contained in:
parent
1fc4e03225
commit
576a82d6c2
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, fetchurl, unzip, dataPath ? "/etc/rainloop" }: let
|
{ stdenv, fetchurl, unzip, dataPath ? "/etc/rainloop" }: let
|
||||||
common = { edition, sha256 }:
|
common = { edition, sha256 }:
|
||||||
stdenv.mkDerivation (rec {
|
stdenv.mkDerivation (rec {
|
||||||
name = "rainloop-${edition}-${version}";
|
pname = "rainloop${stdenv.lib.optionalString (edition != "") "-${edition}"}";
|
||||||
version = "1.13.0";
|
version = "1.13.0";
|
||||||
|
|
||||||
buildInputs = [ unzip ];
|
buildInputs = [ unzip ];
|
||||||
@ -26,8 +26,8 @@
|
|||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Simple, modern & fast web-based email client";
|
description = "Simple, modern & fast web-based email client";
|
||||||
homepage = "https://www.rainloop.net";
|
homepage = "https://www.rainloop.net";
|
||||||
downloadPage = https://github.com/RainLoop/rainloop-webmail/releases;
|
downloadPage = "https://github.com/RainLoop/rainloop-webmail/releases";
|
||||||
license = licenses.agpl3;
|
license = with licenses; if edition == "" then unfree else agpl3;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = with maintainers; [ das_j ];
|
maintainers = with maintainers; [ das_j ];
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user