jasmin-compiler: 2023.06.0 → 2023.06.1

authored by Vincent Laporte and committed by Vincent Laporte d41c2a87 19153934

+2 -8
+2 -8
pkgs/development/compilers/jasmin-compiler/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "jasmin-compiler"; 5 - version = "2023.06.0"; 5 + version = "2023.06.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/jasmin-lang/jasmin/releases/download/v${version}/jasmin-compiler-v${version}.tar.bz2"; 9 - hash = "sha256-yQBQGDNZQhNATs62nqWsgl/HzQCH24EHPp87B3I0Dxo="; 9 + hash = "sha256-3+eIR8wkBlcUQVDsugHo/rHNHbE2vpE9gutp55kRY4Y="; 10 10 }; 11 11 12 12 sourceRoot = "jasmin-compiler-v${version}/compiler"; 13 - 14 - # Released tarball contains extraneous `dune` files 15 - # See https://github.com/jasmin-lang/jasmin/pull/495 16 - preBuild = '' 17 - rm -rf tests 18 - ''; 19 13 20 14 nativeBuildInputs = with ocamlPackages; [ ocaml findlib dune_3 menhir camlidl cmdliner ]; 21 15