nixpkgs/pkgs/development/libraries/haskell/vado/default.nix
Mateusz Kowalczyk 02c979aa9f haskell-vado: update to 0.0.2
This is a version-bump only, putting the attoparsec version bound up on
Hackage through proper means:
https://github.com/hamishmack/vado/issues/5
2014-09-27 15:14:19 +01:00

20 lines
629 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, attoparsec, filepath, QuickCheck, text }:
cabal.mkDerivation (self: {
pname = "vado";
version = "0.0.2";
sha256 = "15kdqgpdy501g4hpldq44s7qgh4xchl6acnr95i5fj8ky4vgwfi0";
isLibrary = true;
isExecutable = true;
buildDepends = [ attoparsec filepath text ];
testDepends = [ attoparsec filepath QuickCheck text ];
meta = {
homepage = "https://github.com/hamishmack/vado";
description = "Runs commands on remote machines using ssh";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})