about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-05-15 14:57:42 +0200
committerGitHub <noreply@github.com>2019-05-15 14:57:42 +0200
commit4ec7a6eda993986a2e0e00c999e92e290e9dccac (patch)
tree6e8d138badc22411c5f78982383fff26f21424d3
parentd9df60fb71a61ee62786a6205ef5efbae5b726f0 (diff)
parentcef5ed2cf4bfc7bdb71c894e1b90154e3a35553b (diff)
downloadnixlib-4ec7a6eda993986a2e0e00c999e92e290e9dccac.tar
nixlib-4ec7a6eda993986a2e0e00c999e92e290e9dccac.tar.gz
nixlib-4ec7a6eda993986a2e0e00c999e92e290e9dccac.tar.bz2
nixlib-4ec7a6eda993986a2e0e00c999e92e290e9dccac.tar.lz
nixlib-4ec7a6eda993986a2e0e00c999e92e290e9dccac.tar.xz
nixlib-4ec7a6eda993986a2e0e00c999e92e290e9dccac.tar.zst
nixlib-4ec7a6eda993986a2e0e00c999e92e290e9dccac.zip
Merge pull request #61532 from lilyball/chit
chit: 0.1.12 -> 0.1.13
-rw-r--r--pkgs/development/tools/chit/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/development/tools/chit/default.nix b/pkgs/development/tools/chit/default.nix
index a23a3d45ccee..c0fa754e1e9d 100644
--- a/pkgs/development/tools/chit/default.nix
+++ b/pkgs/development/tools/chit/default.nix
@@ -6,13 +6,13 @@ with rustPlatform;
 
 buildRustPackage rec {
   pname = "chit";
-  version = "0.1.12";
+  version = "0.1.13";
 
   src = fetchFromGitHub {
     owner = "peterheesterman";
     repo = pname;
     rev = version;
-    sha256 = "17g2p07zhf4n4pjmws0ssfy2mrn0v933ih0vnlr1z2cv9mx8srsl";
+    sha256 = "1qp5ad83lvfz9l4ihz1l500p8bgf7q0z1k4f3i13nd5n7i3ksdjc";
   };
 
   cargoSha256 = "1jqnnf4jgjpm1i310hda15423nxfw9frgpmc2kbrs66qcsj7avaw";
@@ -23,9 +23,6 @@ buildRustPackage rec {
   ++ stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ CoreFoundation CoreServices Security ])
   ;
 
-  # Tests require network access
-  doCheck = false;
-
   meta = with stdenv.lib; {
     description = "Crate help in terminal: A tool for looking up details about rust crates without going to crates.io";
     longDescription = ''