at v206 20 lines 553 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "apparix-11-062"; 5 6 src = fetchurl { 7 url = "http://micans.org/apparix/src/${name}.tar.gz"; 8 sha256 = "211bb5f67b32ba7c3e044a13e4e79eb998ca017538e9f4b06bc92d5953615235"; 9 }; 10 11 doCheck = true; 12 13 meta = with stdenv.lib; { 14 homepage = http://micans.org/apparix; 15 description = "Add directory bookmarks, distant listing, and distant editing to the command line"; 16 maintainers = with maintainers; [ lethalman ]; 17 license = licenses.gpl2; 18 platforms = platforms.linux; 19 }; 20}