Skip to content

Commit

Permalink
Merge pull request #621 from errge/xtest
Browse files Browse the repository at this point in the history
Add haskell/xtest
  • Loading branch information
peti committed Jun 15, 2013
2 parents c7ee3ca + efb4672 commit c0d78bf
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pkgs/development/libraries/haskell/xtest/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{ cabal, X11, libXtst }:

cabal.mkDerivation (self: {
pname = "xtest";
version = "0.2";
sha256 = "118xxx7sydpsvdqz0x107ngb85fggn630ysw6d2ckky75fmhmxk7";
buildDepends = [ X11 ];
extraLibraries = [ libXtst ];
meta = {
description = "Thin FFI bindings to X11 XTest library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})
2 changes: 2 additions & 0 deletions pkgs/top-level/haskell-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2105,6 +2105,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);

xmlTypes = callPackage ../development/libraries/haskell/xml-types {};

xtest = callPackage ../development/libraries/haskell/xtest {};

xssSanitize = callPackage ../development/libraries/haskell/xss-sanitize {};

yaml = callPackage ../development/libraries/haskell/yaml {};
Expand Down

0 comments on commit c0d78bf

Please sign in to comment.