mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
14 lines
322 B
Nix
14 lines
322 B
Nix
{ buildDhallGitHubPackage, Prelude }:
|
|
|
|
let
|
|
version = "0.9.64";
|
|
|
|
in buildDhallGitHubPackage {
|
|
name = "cloudformation";
|
|
owner = "jcouyang";
|
|
repo = "dhall-aws-cloudformation";
|
|
rev = version;
|
|
sha256 = "sha256-EDbMKHORYQOKoSrbErkUnsadDiYfK1ULbFhz3D5AcXc=";
|
|
file = "package.dhall";
|
|
dependencies = [ Prelude ];
|
|
}
|