about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-03-30 05:31:37 -0500
committerGitHub <noreply@github.com>2024-03-30 05:31:37 -0500
commit3eddf3150a969b58f35f4f27d22fb7dd1274916a (patch)
tree3df304feb0d29321aca275425eef0c4769f1f083 /pkgs
parent49c3fc46cbf60ef51d817c839b098ab20d6835d8 (diff)
parentf18c020f0b9397aa29aa7d869079273aa1d3d864 (diff)
Merge pull request #299200 from Pyxels/bartib/1.1.0
bartib: 1.0.1 -> 1.1.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/bartib/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/tools/misc/bartib/default.nix b/pkgs/tools/misc/bartib/default.nix
index 893fbe7b58a3f..0719f8a168bba 100644
--- a/pkgs/tools/misc/bartib/default.nix
+++ b/pkgs/tools/misc/bartib/default.nix
@@ -2,16 +2,19 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "bartib";
-  version = "1.0.1";
+  version = "1.1.0";
 
   src = fetchFromGitHub {
     owner = "nikolassv";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0ph3rsrhcyi272bv5018pw185zn7fvp5fqj24yh9rjrz8x7iawib";
+    sha256 = "sha256-eVLacxKD8seD8mxVN1D3HhKZkIDXsEsSisZnFbmhpSk=";
   };
 
-  cargoSha256 = "sha256-1ZFwX7NKIainer7o9dIMxwyycdGW8K9euLHad/tF95w=";
+  cargoSha256 = "sha256-s/oGv7/0LgNpdGu6dnvvbxDgFDvcvcHL01dSPxhMVWE=";
+  preConfigure = ''
+    cargo metadata --offline
+  '';
 
   nativeBuildInputs = [ installShellFiles ];