about summary refs log tree commit diff
path: root/pkgs/applications/editors/joe
AgeCommit message (Collapse)AuthorFilesLines
2024-06-09treewide: Remove indefinite article from meta.descriptionAlexis Hildebrandt1-1/+1
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-03joe: cleanupAndersonTorres1-2/+30
Add a longDescription, and also add myself as maintainer.
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-2/+2
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2018-02-21joe: 4.4 -> 4.6Vladyslav M1-3/+3
2017-03-19joe: 4.2 -> 4.4ndowens1-2/+2
2016-08-02treewide: Add lots of meta.platformsTuomas Tynkkynen1-0/+1
Build-tested on x86_64 Linux & Mac.
2016-05-16joe: 4.1 -> 4.2Matthias Beyer1-2/+2
2015-09-25joe: Move version to own variableMatthias Beyer1-1/+2
2015-09-25joe: 4.0 -> 4.1Matthias Beyer1-2/+2
2015-05-31joe: update from 3.7 to 4.0, add meta-informationPascal Wittmann1-4/+6
2012-07-31Joe: Bump to 3.7Shea Levy1-4/+5
2008-01-30meta.homepage added to several packagesYury G. Kudryashov1-5/+9
svn path=/nixpkgs/trunk/; revision=10417
2007-08-27* Rewrite all the SourceForge URLs to mirror://sourceforge/.Eelco Dolstra1-1/+1
find . -name "*.nix" | while read fn; do sed 's^http://[a-z]*.dl.sourceforge.net/sourceforge/^mirror://sourceforge/^g' < $fn > $fn.new; mv $fn.new $fn; done svn path=/nixpkgs/trunk/; revision=9198
2007-08-24* Reverted r6713, r6711, r4623, r3660, r2237. There rewrote fetchurlEelco Dolstra1-1/+1
URLs to http://nix.cs.uu.nl/dist/tarballs. With content-addressable mirror support (r9190, NIXPKGS-70) this is no longer necessary: fetchurl will try to download from that location automatically. So we can keep the original URLs. svn path=/nixpkgs/trunk/; revision=9192
2006-10-12* Remove a bunch of unused Nix expressions.Eelco Dolstra1-1/+0
svn path=/nixpkgs/trunk/; revision=6716
2006-10-12* Copy a bunch of files to nix.cs.uu.nl.Eelco Dolstra1-1/+1
svn path=/nixpkgs/trunk/; revision=6711
2006-02-03Joe doen't need its own builder scriptMerijn de Jonge2-10/+0
svn path=/nixpkgs/trunk/; revision=4683
2006-02-02added Joe (Joe's own editor). Yes!Merijn de Jonge3-0/+20
svn path=/nixpkgs/trunk/; revision=4679