2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2014-04-15 08:40:58 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-02 09:38:45 +00:00
|
|
|
pname = "apparix";
|
|
|
|
version = "11-062";
|
2014-04-15 08:40:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-02 09:38:45 +00:00
|
|
|
url = "https://micans.org/apparix/src/apparix-${version}.tar.gz";
|
2014-04-15 08:40:58 +00:00
|
|
|
sha256 = "211bb5f67b32ba7c3e044a13e4e79eb998ca017538e9f4b06bc92d5953615235";
|
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://micans.org/apparix";
|
2014-04-15 08:40:58 +00:00
|
|
|
description = "Add directory bookmarks, distant listing, and distant editing to the command line";
|
2021-05-07 13:35:21 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2024-04-26 11:35:31 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2021-03-17 09:25:00 +00:00
|
|
|
platforms = platforms.all;
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "apparix";
|
2014-04-15 08:40:58 +00:00
|
|
|
};
|
|
|
|
}
|