elm-swapper/shell.nix

13 lines
498 B
Nix
Raw Permalink Normal View History

2019-09-06 20:55:24 +00:00
with import (builtins.fetchTarball rec {
# grab a hash from here: https://nixos.org/channels/
name = "nixpkgs-darwin-18.09pre154171.2aead2422f8";
url = "https://github.com/nixos/nixpkgs/archive/2aead2422f85562a09619a657ecab0ca405f2d72.tar.gz";
# Hash obtained using `nix-prefetch-url --unpack <url>`
sha256 = "0hg7q8ggpwni0gswa3a74nnn5pa3gi5xw29735l7w59dw9nln8lp";
}) { };
stdenv.mkDerivation {
name = "elm-swapper";
2019-09-06 21:35:21 +00:00
buildInputs = [ git bash jq shellcheck elmPackages.elm bench ];
2019-09-06 20:55:24 +00:00
}