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