Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rclone-browser: init at 1.2 #44589

Merged
merged 5 commits into from
Oct 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
25 changes: 25 additions & 0 deletions pkgs/applications/networking/sync/rclone/browser.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, cmake, qtbase }:

stdenv.mkDerivation rec {
name = "rclone-browser-${version}";
version = "1.2";

src = fetchFromGitHub {
owner = "mmozeiko";
repo = "RcloneBrowser";
rev = version;
sha256 = "1ldradd5c606mfkh46y4mhcvf9kbjhamw0gahksp9w43h5dh3ir7";
};

nativeBuildInputs = [ cmake ];

buildInputs = [ qtbase ];

meta = with stdenv.lib; {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could also use some whitespace.

inherit (src.meta) homepage;
description = "Graphical Frontend to Rclone written in Qt";
license = licenses.unlicense;
platforms = platforms.linux;
maintainers = with maintainers; [ dotlambda ];
};
dotlambda marked this conversation as resolved.
Show resolved Hide resolved
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18130,6 +18130,8 @@ with pkgs;

rclone = callPackage ../applications/networking/sync/rclone { };

rclone-browser = libsForQt5.callPackage ../applications/networking/sync/rclone/browser.nix { };

rcs = callPackage ../applications/version-management/rcs { };

rdesktop = callPackage ../applications/networking/remote/rdesktop { };
Expand Down