mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 00:27:26 +00:00
haskell-vado: add version 0.0.1
This commit is contained in:
parent
1e662766fb
commit
b46aac7d79
17
pkgs/development/libraries/haskell/vado/default.nix
Normal file
17
pkgs/development/libraries/haskell/vado/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ cabal, attoparsec, filepath, QuickCheck, text }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "vado";
|
||||
version = "0.0.1";
|
||||
sha256 = "11b8glzzpzhm8cfw3vyvvvz3h0xid5r3prwhnvplajr7v3r562h2";
|
||||
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;
|
||||
};
|
||||
})
|
@ -2506,6 +2506,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
|
||||
vacuumCairo = callPackage ../development/libraries/haskell/vacuum-cairo {};
|
||||
|
||||
vado = callPackage ../development/libraries/haskell/vado {};
|
||||
|
||||
vault = callPackage ../development/libraries/haskell/vault {};
|
||||
|
||||
vcsgui = callPackage ../development/libraries/haskell/vcsgui {};
|
||||
|
Loading…
Reference in New Issue
Block a user