···2233let44 pname = "alt-ergo";55- version = "2.4.2";55+ version = "2.4.3";6677 configureScript = "ocaml unix.cma configure.ml";88···1010 owner = "OCamlPro";1111 repo = pname;1212 rev = "refs/tags/${version}";1313- hash = "sha256-8pJ/1UAbheQaLFs5Uubmmf5D0oFJiPxF6e2WTZgRyAc=";1313+ hash = "sha256-2XARGr8rLiPMOM0rBBoRv5tZvKYtkLkJctGqLYkMe7Q=";1414 };1515in1616···2020 configureFlags = [ pname ];2121 nativeBuildInputs = [ which ];2222 buildInputs = with ocamlPackages; [ dune-configurator ];2323- propagatedBuildInputs = with ocamlPackages; [ num ocplib-simplex seq stdlib-shims zarith ];2323+ propagatedBuildInputs = with ocamlPackages; [ dune-build-info num ocplib-simplex seq stdlib-shims zarith ];2424 preBuild = ''2525 substituteInPlace src/lib/util/version.ml --replace 'version="dev"' 'version="${version}"'2626 '';
+2-2
pkgs/development/interpreters/erlang/25.nix
···11{ mkDerivation }:2233mkDerivation {44- version = "25.3.2";55- sha256 = "cuFeHwyAyS8R7rXcJJxzE7LTZGgDr4x3qMZx63PIowM=";44+ version = "25.3.2.1";55+ sha256 = "4PDK18/tekJHgNGECG5hv/HvwvteR+FeN6hlpB9FC9o=";66}
+1-1
pkgs/development/interpreters/ruby/dev.nix
···11/* An environment for development that bundles ruby, bundler and bundix22- together. This avoids version conflicts where each is using a diferent22+ together. This avoids version conflicts where each is using a different33 version of each-other.44*/55{ buildEnv, ruby, bundler, bundix }:
···16161717let1818 # The binaries are following the argr projects release cycle1919- version = "9.2.52";1919+ version = "9.2.53";20202121 # Binary files from https://github.com/angr/binaries (only used for testing and only here)2222 binaries = fetchFromGitHub {···3838 owner = "angr";3939 repo = pname;4040 rev = "refs/tags/v${version}";4141- hash = "sha256-01NFCADCGo/frM2EKlkq4wpJ4lJeNoFoP1my+2PK73g=";4141+ hash = "sha256-qQPWSCKhiZ5RBR2OShwc+W7QZn+Lh7487PJEnJpUOnU=";4242 };43434444 nativeBuildInputs = [
···11+{ lib22+, rustPlatform33+, fetchFromGitHub44+}:55+66+rustPlatform.buildRustPackage rec {77+ pname = "sleek";88+ version = "0.3.0";99+1010+ src = fetchFromGitHub {1111+ owner = "nrempel";1212+ repo = "sleek";1313+ rev = "v${version}";1414+ hash = "sha256-VQ0LmKhFsC12qoXCFHxtV5E+J7eRvZMVH0j+5r8pDk8=";1515+ };1616+1717+ # 0.3.0 has been tagged before the actual Cargo.lock bump, resulting in an inconsitent lock file.1818+ # To work around this, the Cargo.lock below is from the commit right after the tag:1919+ # https://github.com/nrempel/sleek/commit/18c5457a813a16e3eebfc1c6f512131e6e8daa022020+ postPatch = ''2121+ ln -s --force ${./Cargo.lock} Cargo.lock2222+ '';2323+2424+ cargoLock.lockFile = ./Cargo.lock;2525+2626+ meta = with lib; {2727+ description = "A CLI tool for formatting SQL";2828+ homepage = "https://github.com/nrempel/sleek";2929+ license = licenses.mit;3030+ maintainers = with maintainers; [ xrelkd ];3131+ };3232+}
···16635166351663616636 shmig = callPackage ../development/tools/database/shmig { };16637166371663816638+ sleek = callPackage ../development/tools/database/sleek { };1663916639+1663816640 smlfmt = callPackage ../development/tools/smlfmt { };16639166411664016642 # smlnjBootstrap should be redundant, now that smlnj works on Darwin natively