nixpkgs/pkgs/development/interpreters/elixir/1.13.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
271 B
Nix
Raw Normal View History

2021-12-06 16:07:01 +00:00
{ mkDerivation }:
# How to obtain `sha256`:
# nix-prefetch-url --unpack https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz
mkDerivation {
2022-02-11 22:58:18 +00:00
version = "1.13.3";
sha256 = "sha256-xOIGMpjemPi1xLiYmFpQR4FD6PzeFBxSJP4QpNnEUSE=";
2021-12-06 16:07:01 +00:00
minimumOTPVersion = "22";
}