tickLeiste/tickLeiste-aeson/tickLeiste-aeson.nix

13 lines
430 B
Nix
Raw Normal View History

2023-10-30 12:12:46 +01:00
{ mkDerivation, aeson, base, hpack, lib, text, tickLeiste, uuid }:
mkDerivation {
pname = "tickLeiste-aeson";
version = "0.1.0.0";
src = ./.;
libraryHaskellDepends = [ aeson base text tickLeiste uuid ];
libraryToolDepends = [ hpack ];
testHaskellDepends = [ aeson base text tickLeiste uuid ];
prePatch = "hpack";
homepage = "https://github.com/githubuser/tickLeiste-aeson#readme";
license = lib.licenses.bsd3;
}