lol
0
fork

Configure Feed

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

at 17.09-beta 16 lines 427 B view raw
1{ gsmakeDerivation, fetchurl, base }: 2let 3 version = "0.25.0"; 4in 5gsmakeDerivation { 6 name = "gnustep-gui-${version}"; 7 src = fetchurl { 8 url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-gui-${version}.tar.gz"; 9 sha256 = "10jf3xir59qzbhhl0bvs9wdw40fsmvv6mdv5akdkia1rnck60xf5"; 10 }; 11 buildInputs = [ base ]; 12 patches = [ ./fixup-all.patch ]; 13 meta = { 14 description = "A GUI class library of GNUstep"; 15 }; 16}