nixpkgs/pkgs/applications/editors/joe/default.nix

15 lines
291 B
Nix
Raw Normal View History

{stdenv, fetchurl} :
2012-07-31 22:30:50 +02:00
stdenv.mkDerivation rec {
name = "joe-3.7";
src = fetchurl {
2012-07-31 22:30:50 +02:00
url = "mirror://sourceforge/joe-editor/${name}.tar.gz";
sha256 = "0vqhffdjn3xwsfa383i6kdrpfwilq8b382ljjhy1v32smphmdr6a";
};
meta = {
homepage = http://joe-editor.sourceforge.net;
};
}