lol
0
fork

Configure Feed

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

at 24.11-pre 25 lines 622 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 version = "0.5.2"; 5 pname = "genromfs"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/romfs/genromfs/${version}/${pname}-${version}.tar.gz"; 9 sha256 = "0q6rpq7cmclmb4ayfyknvzbqysxs4fy8aiahlax1sb2p6k3pzwrh"; 10 }; 11 12 makeFlags = [ 13 "prefix:=$(out)" 14 "CC:=$(CC)" 15 ]; 16 17 meta = with lib; { 18 homepage = "https://romfs.sourceforge.net/"; 19 description = "Tool for creating romfs file system images"; 20 license = licenses.gpl2Plus; 21 maintainers = with maintainers; [ nickcao ]; 22 platforms = platforms.all; 23 mainProgram = "genromfs"; 24 }; 25}