feedback/feedback-test-harness/default.nix

20 lines
679 B
Nix
Raw Normal View History

2023-10-12 18:10:39 +03:00
{ mkDerivation, autodocodec-yaml, base, bytestring, containers
, feedback, filelock, lib, path, path-io, process, sydtest
, sydtest-discover, typed-process, unix, unliftio
2023-01-14 22:43:45 +03:00
}:
mkDerivation {
pname = "feedback-test-harness";
version = "0.0.0.0";
src = ./.;
libraryHaskellDepends = [ base feedback path path-io ];
2023-01-14 22:53:46 +03:00
testHaskellDepends = [
2023-10-12 18:10:39 +03:00
autodocodec-yaml base bytestring containers feedback filelock path
path-io process sydtest typed-process unix unliftio
2023-01-14 22:53:46 +03:00
];
2023-01-14 22:43:45 +03:00
testToolDepends = [ sydtest-discover ];
doHaddock = false;
homepage = "https://github.com/NorfairKing/feedback#readme";
description = "Tests for 'feedback'";
license = lib.licenses.gpl3Only;
}