summary refs log tree commit diff
path: root/pkgs/development/libraries/mutest
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2023-07-05 18:19:54 +0200
committerJan Tojnar <jtojnar@gmail.com>2023-07-06 16:27:51 +0200
commitb5f263117a3a8ea5bc2b39196626bddd5e931491 (patch)
treed75c66df7d138427428de40f09784ab57521131f /pkgs/development/libraries/mutest
parenteb0ea8b688059fbc7f1c091feeddc10eec5b6a1e (diff)
downloadnixpkgs-b5f263117a3a8ea5bc2b39196626bddd5e931491.tar
nixpkgs-b5f263117a3a8ea5bc2b39196626bddd5e931491.tar.gz
nixpkgs-b5f263117a3a8ea5bc2b39196626bddd5e931491.tar.bz2
nixpkgs-b5f263117a3a8ea5bc2b39196626bddd5e931491.tar.lz
nixpkgs-b5f263117a3a8ea5bc2b39196626bddd5e931491.tar.xz
nixpkgs-b5f263117a3a8ea5bc2b39196626bddd5e931491.tar.zst
nixpkgs-b5f263117a3a8ea5bc2b39196626bddd5e931491.zip
mutest: unstable-2019-08-26 → 0-unstable-2023-02-24
https://github.com/ebassi/mutest/compare/e6246c9ae4f36ffe8c021f0a80438f6c7a6efa3a...18a20071773f7c4b75e82a931ef9b916b273b3e5

- Use new version schema.
- Add update script.
- Use more convenient homepage.
Diffstat (limited to 'pkgs/development/libraries/mutest')
-rw-r--r--pkgs/development/libraries/mutest/default.nix16
1 files changed, 11 insertions, 5 deletions
diff --git a/pkgs/development/libraries/mutest/default.nix b/pkgs/development/libraries/mutest/default.nix
index f2d3a559553..f8e02b65774 100644
--- a/pkgs/development/libraries/mutest/default.nix
+++ b/pkgs/development/libraries/mutest/default.nix
@@ -1,20 +1,22 @@
-{ lib, stdenv
+{ stdenv
+, lib
 , fetchFromGitHub
 , meson
 , ninja
+, unstableGitUpdater
 }:
 
 stdenv.mkDerivation {
   pname = "mutest";
-  version = "unstable-2019-08-26";
+  version = "0-unstable-2023-02-24";
 
   outputs = [ "out" "dev" ];
 
   src = fetchFromGitHub {
     owner = "ebassi";
     repo = "mutest";
-    rev = "e6246c9ae4f36ffe8c021f0a80438f6c7a6efa3a";
-    sha256 = "0gdqwq6fvk06wld4rhnw5752hahrvhd69zrci045x25rwx90x26q";
+    rev = "18a20071773f7c4b75e82a931ef9b916b273b3e5";
+    sha256 = "z0kASte0/I48Fgxhblu24MjGHidWomhfFOhfStGtPn4=";
   };
 
   nativeBuildInputs = [
@@ -24,8 +26,12 @@ stdenv.mkDerivation {
 
   doCheck = true;
 
+  passthru = {
+    updateScript = unstableGitUpdater { };
+  };
+
   meta = with lib; {
-    homepage = "https://ebassi.github.io/mutest/mutest.md.html";
+    homepage = "https://github.com/ebassi/mutest";
     description = "A BDD testing framework for C, inspired by Mocha";
     license = licenses.mit;
     maintainers = with maintainers; [ jtojnar ];