nixpkgs/pkgs/applications/editors/joe/default.nix
2012-07-31 16:30:50 -04:00

15 lines
291 B
Nix

{stdenv, fetchurl} :
stdenv.mkDerivation rec {
name = "joe-3.7";
src = fetchurl {
url = "mirror://sourceforge/joe-editor/${name}.tar.gz";
sha256 = "0vqhffdjn3xwsfa383i6kdrpfwilq8b382ljjhy1v32smphmdr6a";
};
meta = {
homepage = http://joe-editor.sourceforge.net;
};
}