lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 21 lines 655 B view raw
1{ stdenv, fetchurl }: 2 3rec { 4 version = "3.1.2"; 5 src = fetchurl { 6 # signed with key 0048 C8B0 26D4 C96F 0E58 9C2F 6C85 9FB1 4B96 A8C5 7 url = "mirror://samba/rsync/src/rsync-${version}.tar.gz"; 8 sha256 = "1hm1q04hz15509f0p9bflw4d6jzfvpm1d36dxjwihk1wzakn5ypc"; 9 }; 10 patches = fetchurl { 11 # signed with key 0048 C8B0 26D4 C96F 0E58 9C2F 6C85 9FB1 4B96 A8C5 12 url = "mirror://samba/rsync/rsync-patches-${version}.tar.gz"; 13 sha256 = "09i3dcl37p22dp75vlnsvx7bm05ggafnrf1zwhf2kbij4ngvxvpd"; 14 }; 15 16 meta = with stdenv.lib; { 17 homepage = http://rsync.samba.org/; 18 license = licenses.gpl3Plus; 19 platforms = platforms.unix; 20 }; 21}