Merge pull request #2271 from lethalman/apparix

apparix: new package
This commit is contained in:
Michael Raskin
2014-04-18 10:17:44 -07:00
2 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "apparix-11-062";
src = fetchurl {
url = "http://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;
};
}