lol
0
fork

Configure Feed

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

at 17.09-beta 24 lines 613 B view raw
1{ stdenv, fetchsvn }: 2 3stdenv.mkDerivation rec { 4 name = "mstpd-svn-${toString version}"; 5 version = 61; 6 7 src = fetchsvn { 8 url = "svn://svn.code.sf.net/p/mstpd/code/trunk"; 9 rev = version; 10 sha256 = "0n5vqqqq8hk6iqdz100j9ps4zkz71vyl5qgz5bzjhayab2dyq1fd"; 11 }; 12 13 patches = [ ./fixes.patch ]; 14 15 installFlags = [ "DESTDIR=\${out}" ]; 16 17 meta = with stdenv.lib; { 18 description = "Multiple Spanning Tree Protocol daemon"; 19 homepage = http://sourceforge.net/projects/mstpd/; 20 license = licenses.gpl2; 21 platforms = platforms.linux; 22 maintainers = with maintainers; [ wkennington ]; 23 }; 24}