nixpkgs/pkgs/tools/misc/apparix/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
602 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "apparix";
version = "11-062";
src = fetchurl {
url = "https://micans.org/apparix/src/apparix-${version}.tar.gz";
sha256 = "211bb5f67b32ba7c3e044a13e4e79eb998ca017538e9f4b06bc92d5953615235";
};
doCheck = true;
meta = with lib; {
homepage = "http://micans.org/apparix";
description = "Add directory bookmarks, distant listing, and distant editing to the command line";
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";
};
}