summary refs log tree commit diff
path: root/pkgs/development/compilers/dale
diff options
context:
space:
mode:
authorAndrew Miloradovsky <miloradovsky@gmail.com>2017-04-19 05:23:03 +0000
committerAndrew Miloradovsky <miloradovsky@gmail.com>2017-04-19 05:46:35 +0000
commit30b774a5c7a4a6720f49b63a2ef26bd1d0c719ce (patch)
treeab389e4ba09b6cd780c4805c05eac9b17ab1c57c /pkgs/development/compilers/dale
parent91ad6b35970b1378ac99de209b4ec48318704b07 (diff)
downloadnixlib-30b774a5c7a4a6720f49b63a2ef26bd1d0c719ce.tar
nixlib-30b774a5c7a4a6720f49b63a2ef26bd1d0c719ce.tar.gz
nixlib-30b774a5c7a4a6720f49b63a2ef26bd1d0c719ce.tar.bz2
nixlib-30b774a5c7a4a6720f49b63a2ef26bd1d0c719ce.tar.lz
nixlib-30b774a5c7a4a6720f49b63a2ef26bd1d0c719ce.tar.xz
nixlib-30b774a5c7a4a6720f49b63a2ef26bd1d0c719ce.tar.zst
nixlib-30b774a5c7a4a6720f49b63a2ef26bd1d0c719ce.zip
dale: 20170416 -> 20170419
- now builds on x86-32 too (+ tests)
- fairer platforms declaration
- corrected the license information
Diffstat (limited to 'pkgs/development/compilers/dale')
-rw-r--r--pkgs/development/compilers/dale/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/development/compilers/dale/default.nix b/pkgs/development/compilers/dale/default.nix
index d1fb9b212431..358bb060e48a 100644
--- a/pkgs/development/compilers/dale/default.nix
+++ b/pkgs/development/compilers/dale/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchFromGitHub, cmake, libffi, llvm_35, perl }:
 
-let version = "20170416";
+let version = "20170419";
     doCheck = false;
 in stdenv.mkDerivation {
   name = "dale-${version}";
@@ -8,8 +8,8 @@ in stdenv.mkDerivation {
   src = fetchFromGitHub {
     owner = "tomhrr";
     repo = "dale";
-    rev = "ecc5ea91efef8a263c7dddd6925983df5b5258b2";
-    sha256 = "0naly7jsfriiqf68q210ay9ppcvidbwwcxksy5zwy1m17aq5kxaw";
+    rev = "64e072d0520a134b9ae8038104fa977776b6e0af";
+    sha256 = "1apvq3v6ra8x0sj8gg9yavqsyxiggh2wnh1zbw2ccpg723bssl4a";
   };
 
   buildInputs = [ cmake libffi llvm_35 ] ++
@@ -28,8 +28,10 @@ in stdenv.mkDerivation {
       S-expressions for syntax and supports syntactic macros.
     '';
     homepage = "https://github.com/tomhrr/dale";
-    license = licenses.mit;
+    license = licenses.bsd3;
     maintainers = with maintainers; [ amiloradovsky ];
-    platforms = platforms.linux;  # fails on Darwin, linking vs. FFI
+    platforms = with platforms; [ "i686-linux" "x86_64-linux" ];
+    # failed on Darwin: linker couldn't find the FFI lib
+    # failed on AArch64: because LLVM 3.5 is failed there
   };
 }