about summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-03-31 04:42:13 +0000
committerJon <jonringer@users.noreply.github.com>2020-03-30 22:28:20 -0700
commit0474424904d3756d5879a2622563ef3dc8e42290 (patch)
tree7ed3308dbc705e61bf868648844a0e143c84a816 /pkgs/development/tools/misc
parent58c96b5224d9e69626729edb4287a213886c99f2 (diff)
downloadnixlib-0474424904d3756d5879a2622563ef3dc8e42290.tar
nixlib-0474424904d3756d5879a2622563ef3dc8e42290.tar.gz
nixlib-0474424904d3756d5879a2622563ef3dc8e42290.tar.bz2
nixlib-0474424904d3756d5879a2622563ef3dc8e42290.tar.lz
nixlib-0474424904d3756d5879a2622563ef3dc8e42290.tar.xz
nixlib-0474424904d3756d5879a2622563ef3dc8e42290.tar.zst
nixlib-0474424904d3756d5879a2622563ef3dc8e42290.zip
whatstyle: 0.1.7 -> 0.1.8
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/whatstyle/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/whatstyle/default.nix b/pkgs/development/tools/misc/whatstyle/default.nix
index 0c6e4f568ffc..c882d6243fa0 100644
--- a/pkgs/development/tools/misc/whatstyle/default.nix
+++ b/pkgs/development/tools/misc/whatstyle/default.nix
@@ -2,12 +2,12 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "whatstyle";
-  version = "0.1.7";
+  version = "0.1.8";
   src = fetchFromGitHub {
     owner = "mikr";
     repo = pname;
     rev = "v${version}";
-    sha256 = "16ak4g149cr764c1lqakiyzmf5s98w8bdc4gk69m8qacimfg3mzm";
+    sha256 = "08lfd8h5fnvy5gci4f3an411cypad7p2yiahvbmlp51r9xwpaiwr";
   };
 
   # Fix references to previous version, to avoid confusion:
@@ -22,7 +22,7 @@ python3.pkgs.buildPythonApplication rec {
 
   meta = with stdenv.lib; {
     description = "Find a code format style that fits given source files";
-    homepage = https://github.com/mikr/whatstyle;
+    homepage = "https://github.com/mikr/whatstyle";
     license = licenses.mit;
     maintainers = with maintainers; [ dtzWill ];
     platforms = platforms.all;