Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 336be28c1983
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b5cf5ff20f92
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jun 18, 2019

  1. grsync: init at 1.2.6

    Use mirror url
    
    Co-Authored-By: Mario Rodas <marsam@users.noreply.github.com>
    Roman Kuznetsov and marsam committed Jun 18, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    sikmir Nikolay Korotkiy
    Copy the full SHA
    5672a51 View commit details
  2. Merge pull request #63164 from kuznero/grsync

    grsync: init at 1.2.6
    marsam authored Jun 18, 2019
    Copy the full SHA
    b5cf5ff View commit details
Showing with 34 additions and 0 deletions.
  1. +32 −0 pkgs/applications/misc/grsync/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
32 changes: 32 additions & 0 deletions pkgs/applications/misc/grsync/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{ stdenv, fetchurl, dee, gtk2, intltool, libdbusmenu-gtk2, libunity, pkg-config, rsync }:

stdenv.mkDerivation rec {
version = "1.2.6";
pname = "grsync";

src = fetchurl {
url = "mirror://sourceforge/grsync/grsync-${version}.tar.gz";
sha256 = "06ani65d58p8r3jvxjwpwyqrr07ya3icdqc243nxcrv7bvmarmb6";
};

nativeBuildInputs = [
intltool
pkg-config
];

buildInputs = [
dee
gtk2
libdbusmenu-gtk2
libunity
rsync
];

meta = with stdenv.lib; {
description = "Grsync is used to synchronize folders, files and make backups";
homepage = "http://www.opbyte.it/grsync/";
license = licenses.gpl1;
platforms = platforms.linux;
maintainers = [ maintainers.kuznero ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -171,6 +171,8 @@ in

digitalbitbox = libsForQt5.callPackage ../applications/misc/digitalbitbox { };

grsync = callPackage ../applications/misc/grsync { };

dockerTools = callPackage ../build-support/docker { };

nix-prefetch-docker = callPackage ../build-support/docker/nix-prefetch-docker.nix { };