Unverified Commit 3f0ccd2a authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #229379 from centromere/tl-expected-1.1.0

tl-expected: 2023-02-15 -> 1.1.0
parents 9b4107a1 91c65c93
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
  pname = "tl-expected-unstable";
  version = "2023-02-15"; # 37 commits ahead of version 1.0.0
  pname = "tl-expected";
  version = "1.1.0";

  src = fetchFromGitHub {
    owner = "TartanLlama";
    repo = "expected";
    rev = "9d812f5e3b5bc68023f6e31d29489cdcaacef606";
    fetchSubmodules = true;
    hash = "sha256-ZokcGQgHH37nmTMLmxFcun4S1RjXuXb9NfWHet8Fbc4=";
    rev = "v${version}";
    hash = "sha256-AuRU8VI5l7Th9fJ5jIc/6mPm0Vqbbt6rY8QCCNDOU50=";
  };

  nativeBuildInputs = [ cmake ];