lol

dale: 20181024 -> 20220411

+7 -10
+7 -10
pkgs/development/compilers/dale/default.nix
··· 3 3 , cmake 4 4 , pkg-config 5 5 , libffi 6 - , llvm_6 7 - , doCheck ? false 6 + , llvm_13 8 7 , perl 9 8 }: 10 9 11 10 stdenv.mkDerivation { 12 11 pname = "dale"; 13 - version = "20181024"; 12 + version = "20220411"; 14 13 15 14 src = fetchFromGitHub { 16 15 owner = "tomhrr"; 17 16 repo = "dale"; 18 - rev = "f5db8b486f4e7c423fc25941a8315f1209bc0e54"; 19 - sha256 = "0v4ajrzrqvf279kd7wsd9flrpsav57lzxlwwimk9vnfwh7xpzf9v"; 17 + rev = "7386ef2d8912c60c6fb157a1e5cd772e15eaf658"; 18 + sha256 = "sha256-LNWqrFuEjtL7zuPTBfe4qQWr8IrT/ldQWSeDTK3Wqmo="; 20 19 }; 21 20 22 - nativeBuildInputs = [ cmake pkg-config llvm_6.dev ]; 23 - buildInputs = [ libffi llvm_6 ]; 21 + nativeBuildInputs = [ cmake pkg-config llvm_13.dev ]; 22 + buildInputs = [ libffi llvm_13 ]; 24 23 25 - inherit doCheck; 26 24 checkInputs = [ perl ]; 27 25 28 26 checkTarget = "tests"; ··· 36 34 homepage = "https://github.com/tomhrr/dale"; 37 35 license = licenses.bsd3; 38 36 maintainers = with maintainers; [ amiloradovsky ]; 39 - platforms = [ "i686-linux" "x86_64-linux" ]; 37 + platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ]; 40 38 # failed on Darwin: linker couldn't find the FFI lib 41 - # failed on AArch64: because LLVM 3.5 is failed there 42 39 }; 43 40 }