lol
fork

Configure Feed

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

at 17.09-beta 20 lines 438 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation rec { 4 name = "popt-1.16"; 5 6 src = fetchurl { 7 url = "http://rpm5.org/files/popt/${name}.tar.gz"; 8 sha256 = "1j2c61nn2n351nhj4d25mnf3vpiddcykq005w2h6kw79dwlysa77"; 9 }; 10 11 patches = if stdenv.isCygwin then [ 12 ./1.16-cygwin.patch 13 ./1.16-vpath.patch 14 ] else null; 15 16 meta = { 17 description = "Command line option parsing library"; 18 platforms = stdenv.lib.platforms.unix; 19 }; 20}