Genode Packages collection
https://git.sr.ht/~ehmry/genodepkgs/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
544 B
25 lines
544 B
# SPDX-License-Identifier: CC0-1.0 |
|
|
|
{ stdenvNoCC, lib, fetchgit }: |
|
|
|
stdenvNoCC.mkDerivation { |
|
name = "dhall-prelude"; |
|
version = " 11.0.0"; |
|
|
|
src = fetchgit { |
|
url = "https://github.com/dhall-lang/dhall-lang"; |
|
rev = "8098184d17c3aecc82674a7b874077a7641be05a"; |
|
sha256 = "0rdvyxq7mvas82wsfzzpk6imzm8ax4q58l522mx0ks69pacpr3yi"; |
|
}; |
|
|
|
phases = [ "unpackPhase" "installPhase" ]; |
|
|
|
installPhase = '' |
|
cp -r Prelude $out |
|
''; |
|
|
|
meta = { |
|
license = lib.licenses.bsd3; |
|
maintainers = with lib.maintainers; [ ehmry ]; |
|
}; |
|
}
|
|
|