summary refs log tree commit diff
path: root/pkgs/development/tools/fnlfmt/default.nix
diff options
context:
space:
mode:
authorBarry Moore <3086255+chiroptical@users.noreply.github.com>2021-10-03 17:03:49 -0400
committerGitHub <noreply@github.com>2021-10-03 23:03:49 +0200
commit9336af2d1aa19247c9309227699ba1867b65e38b (patch)
treec5b68fc9586bbda34f0f6f96515955b1b5cb7cf9 /pkgs/development/tools/fnlfmt/default.nix
parent6c2862ee3185868803fcf9e3d7395ee9de5f13ec (diff)
downloadnixpkgs-9336af2d1aa19247c9309227699ba1867b65e38b.tar
nixpkgs-9336af2d1aa19247c9309227699ba1867b65e38b.tar.gz
nixpkgs-9336af2d1aa19247c9309227699ba1867b65e38b.tar.bz2
nixpkgs-9336af2d1aa19247c9309227699ba1867b65e38b.tar.lz
nixpkgs-9336af2d1aa19247c9309227699ba1867b65e38b.tar.xz
nixpkgs-9336af2d1aa19247c9309227699ba1867b65e38b.tar.zst
nixpkgs-9336af2d1aa19247c9309227699ba1867b65e38b.zip
fnlfmt: 0.2.1 -> 0.2.2 (#140381)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/development/tools/fnlfmt/default.nix')
-rw-r--r--pkgs/development/tools/fnlfmt/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/fnlfmt/default.nix b/pkgs/development/tools/fnlfmt/default.nix
index 4333706d1cf..86ca6b843d2 100644
--- a/pkgs/development/tools/fnlfmt/default.nix
+++ b/pkgs/development/tools/fnlfmt/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "fnlfmt";
-  version = "0.2.1";
+  version = "0.2.2";
 
   src = fetchFromSourcehut {
     owner = "~technomancy";
     repo = pname;
     rev = version;
-    sha256 = "sha256-JIqeQhI3fFGrej2wbj6/367IZqWAFegySc2R8IDmvGE=";
+    sha256 = "sha256-ZuSXeAhxfH0F/Y0nwqisxLMwh21Kub7viNcXD3FVYOc=";
   };
 
   nativeBuildInputs = [ fennel ];
@@ -36,6 +36,6 @@ stdenv.mkDerivation rec {
     homepage = "https://git.sr.ht/~technomancy/fnlfmt";
     license = licenses.lgpl3Plus;
     platforms = lua.meta.platforms;
-    maintainers = [ maintainers.gpanders ];
+    maintainers = with maintainers; [ gpanders chiroptical ];
   };
 }