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: a287a87e1932
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 32a7992874bc
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 7, 2020

  1. Copy the full SHA
    ad450e9 View commit details
  2. Merge pull request #81960 from r-ryantm/auto-update/profile-sync-daemon

    profile-sync-daemon: 6.35 -> 6.36
    ryantm authored Mar 7, 2020
    Copy the full SHA
    32a7992 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/misc/profile-sync-daemon/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/misc/profile-sync-daemon/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, utillinux}:

stdenv.mkDerivation rec {
version = "6.35";
version = "6.36";
pname = "profile-sync-daemon";

src = fetchurl {
url = "https://github.com/graysky2/profile-sync-daemon/archive/v${version}.tar.gz";
sha256 = "0hd3cjhf9nv4q5gvc8lbh5c82095lll7mxll1mj5hkzmnijzsf0v";
sha256 = "0zw9fqpfiz1ld443cw2vp54y86maksmq4mnjs73nlp00nn5z2047";
};

installPhase = ''
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
between the two. One of the major design goals of psd is a completely
transparent user experience.
'';
homepage = https://github.com/graysky2/profile-sync-daemon;
homepage = "https://github.com/graysky2/profile-sync-daemon";
downloadPage = https://github.com/graysky2/profile-sync-daemon/releases;
license = licenses.mit;
maintainers = [ maintainers.prikhi ];