From d04052de46e6525e4ddceb9396528a35b9109c14 Mon Sep 17 00:00:00 2001 From: nixo Date: Thu, 10 Oct 2019 21:12:11 +0200 Subject: [PATCH] gnu: Add julia-bindeps. * gnu/packages/julia-xyz.scm (julia-bindeps-0.8.10): New variable. --- gnu/packages/julia-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index ac9e329114..95884f1cfe 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -184,3 +184,26 @@ function takes in either an Array{UInt8}, a ByteString or an IO object.") (synopsis "Wrapper around the mbed TLS and cryptography C libary") (description "@code{julia-mbedtls} is a julia wrapper around mbed TLS.") (license license:expat))) + +(define-public julia-bindeps + (package + (name "julia-bindeps") + (version "0.8.10") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JuliaPackaging/BinDeps.jl") + (commit (string-append "v" version)))) + (file-name "BinDeps") + (sha256 + (base32 "1da7z4ii78gaqnjal7c4d1xvicyshiil4ls6xhi9id4q8plmfa2m")))) + (propagated-inputs `(("julia-uriparser" ,julia-uriparser) + ("julia-sha" ,julia-sha) + ("julia-compat" ,julia-compat))) + (build-system julia-build-system) + (home-page "https://github.com/JuliaPackaging/BinDeps.jl") + (synopsis "Easily build binary dependencies for Julia packages") + (description "@code{BinDeps} is a package that provides a collection of +tools to build binary dependencies for Julia packages.") + (license license:expat)))