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