about summary refs log tree commit diff
path: root/pkgs/tools/misc/profile-sync-daemon
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-05-28 05:59:57 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-05-28 05:59:57 -0700
commitaf9d10a91b5ef0518ee12b220470735076974210 (patch)
treeef7ede43a31b0b5998799f33dc8f0e8fdf254db3 /pkgs/tools/misc/profile-sync-daemon
parentf0d6411c22d91723fef3f935adf35c7884a4dc76 (diff)
treewide: fix derivation names
Diffstat (limited to 'pkgs/tools/misc/profile-sync-daemon')
-rw-r--r--pkgs/tools/misc/profile-sync-daemon/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/profile-sync-daemon/default.nix b/pkgs/tools/misc/profile-sync-daemon/default.nix
index d3f017171cb68..670f706776549 100644
--- a/pkgs/tools/misc/profile-sync-daemon/default.nix
+++ b/pkgs/tools/misc/profile-sync-daemon/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, rsync, glibc, gawk }:
 
 stdenv.mkDerivation rec {
-  version = "v5.53";
+  version = "5.53";
   name = "profile-sync-daemon-${version}";
 
   src = fetchurl {
-    url = "http://github.com/graysky2/profile-sync-daemon/archive/${version}.tar.gz";
+    url = "http://github.com/graysky2/profile-sync-daemon/archive/v${version}.tar.gz";
     sha256 = "0m7h9l7dndqgb5k3grpc00f6dpg73p6h4q5sgkf8bvyzvcbdafwx";
   };