depot/third_party/nixpkgs/pkgs/tools/misc/apparix/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

20 lines
556 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "apparix-11-062";
src = fetchurl {
url = "https://micans.org/apparix/src/${name}.tar.gz";
sha256 = "211bb5f67b32ba7c3e044a13e4e79eb998ca017538e9f4b06bc92d5953615235";
};
doCheck = true;
meta = with stdenv.lib; {
homepage = "http://micans.org/apparix";
description = "Add directory bookmarks, distant listing, and distant editing to the command line";
maintainers = with maintainers; [ lethalman ];
license = licenses.gpl2;
platforms = platforms.linux;
};
}