mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
15 lines
322 B
Nix
15 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 ];
|
||
|
}
|