3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/editors/joe/default.nix

18 lines
431 B
Nix
Raw Normal View History

{ stdenv, fetchurl } :
2012-07-31 21:30:50 +01:00
stdenv.mkDerivation rec {
2016-05-15 12:16:27 +01:00
version = "4.2";
2015-09-25 14:40:28 +01:00
name = "joe-${version}";
2012-07-31 21:30:50 +01:00
src = fetchurl {
2012-07-31 21:30:50 +01:00
url = "mirror://sourceforge/joe-editor/${name}.tar.gz";
2016-05-15 12:16:27 +01:00
sha256 = "0x39x0qrwdbhl45wd8r8cpzigsip6m5j2crajsrbffk8qm5scpdw";
};
meta = with stdenv.lib; {
description = "A full featured terminal-based screen editor";
homepage = http://joe-editor.sourceforge.net;
license = licenses.gpl2;
};
}