update elm-swapper.nix

haskellify
Brian Hicks 2019-09-08 13:49:08 -05:00
parent dc87034349
commit b977a8f11c
1 changed files with 6 additions and 2 deletions

View File

@ -1,11 +1,15 @@
{ mkDerivation, aeson, base, directory, filepath, stdenv }: { mkDerivation, aeson, base, bytestring, directory, filepath
, stdenv
}:
mkDerivation { mkDerivation {
pname = "elm-swapper"; pname = "elm-swapper";
version = "0.1.0.0"; version = "0.1.0.0";
src = ./.; src = ./.;
isLibrary = false; isLibrary = false;
isExecutable = true; isExecutable = true;
executableHaskellDepends = [ aeson base directory filepath ]; executableHaskellDepends = [
aeson base bytestring directory filepath
];
description = "automatically dispatch to the right version of Elm"; description = "automatically dispatch to the right version of Elm";
license = "unknown"; license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none; hydraPlatforms = stdenv.lib.platforms.none;