about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2024-06-26 15:59:23 +0200
committerGitHub <noreply@github.com>2024-06-26 15:59:23 +0200
commit528d851b471aaa6735f39a8f182d74b61848465f (patch)
treef25bca823cbc7d6151212a95eeec37ac7f32bcc9 /pkgs
parent01c43854735f15f2607d4fe81428421739d94e58 (diff)
parent8589a96244b10a0457e4d5e54f54a52dfd581241 (diff)
Merge pull request #322610 from Mic92/nix-unit
nix-unit: 2.18.0 -> 2.23.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/by-name/ni/nix-unit/package.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/by-name/ni/nix-unit/package.nix b/pkgs/by-name/ni/nix-unit/package.nix
index a9f1b7105c29d..ddcf0c2a43a98 100644
--- a/pkgs/by-name/ni/nix-unit/package.nix
+++ b/pkgs/by-name/ni/nix-unit/package.nix
@@ -15,13 +15,13 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "nix-unit";
-  version = "2.18.0";
+  version = "2.23.0";
 
   src = fetchFromGitHub {
     owner = "nix-community";
     repo = "nix-unit";
     rev = "v${finalAttrs.version}";
-    hash = "sha256-9wq14p+85oW4HlD42NJ0jyA++z3nEYjFQ6uT40xdfbc=";
+    hash = "sha256-sDYeiwVo6+GL4/AHadeExVqE9j3wzdUsyMLs1OYQW7Y=";
   };
 
   buildInputs = [
@@ -29,7 +29,7 @@ stdenv.mkDerivation (finalAttrs: {
     # We pin the nix version to a known working one here as upgrades can likely break the build.
     # Since the nix language is rather stable we don't always need to have the latest and greatest for unit tests
     # On each update of nix unit we should re-evaluate what version we need.
-    nixVersions.nix_2_18
+    nixVersions.nix_2_23
     boost
   ];