nixpkgs/pkgs/development/libraries/haskell/vado/default.nix

20 lines
629 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2014-03-11 13:27:43 +01:00
{ cabal, attoparsec, filepath, QuickCheck, text }:
cabal.mkDerivation (self: {
pname = "vado";
2014-10-13 13:03:50 +02:00
version = "0.0.3";
sha256 = "1s6fb19p3lc6g13ryh7bmxciv62v8m0ihvzrymsj0nn6jghiys5f";
2014-03-11 13:27:43 +01:00
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;
};
})