~toastal/easy-purescript-nix

c8eee8f0df073deedd8d94314a01b76b0d9ff33d — James Brock 1 year, 3 months ago 27e0125 + 8fa812e
Merge pull request #209 from toastal/zephyr-0.5.0

zephyr: 0.4.0 → 0.5.0
1 files changed, 12 insertions(+), 11 deletions(-)

M zephyr.nix
M zephyr.nix => zephyr.nix +12 -11
@@ 3,20 3,21 @@
pkgs.stdenv.mkDerivation rec {
  pname = "zephyr";

  version = "0.4.0";
  version = "0.5.0";

  src =
    if pkgs.stdenv.isDarwin then
      pkgs.fetchurl
        {
          url = "https://github.com/MaybeJustJames/zephyr/releases/download/v${version}/macOS.tar.gz";
          sha256 = "1di4zk75pw0g2hk2zq61v7msvq2ibd9wxnk21nz26fxqw09gxacd";
        }
    else
      pkgs.fetchurl {
    if pkgs.stdenv.hostPlatform.system == "x86_64-linux" then
      (pkgs.fetchurl {
        url = "https://github.com/MaybeJustJames/zephyr/releases/download/v${version}/Linux.tar.gz";
        sha256 = "002rlf9s81il5x3adv7qhj0wxbnvv348l5rcllkrbivk008bb83x";
      };
        sha256 = "1c44nddlx7hx097klfslhap717fkah20vgf1phsp0gj8imjyvr0h";
      })
    else if pkgs.stdenv.hostPlatform.system == "x86_64-darwin" then
      (pkgs.fetchurl {
        url = "https://github.com/MaybeJustJames/zephyr/releases/download/v${version}/macOS.tar.gz";
        sha256 = "1qpd0mwnvkxygby467cr0zwcrpwnv9f0s99g7w8hfz0zfcg358bg";
      })
    else
      throw "Architecture not supported";

  nativeBuildInputs = [ ]
    ++ pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.fixDarwinDylibNames;