cabal2nix-2.9.3: test/golden-test-cases/one-liner.nix.golden
{ mkDerivation, base, bifunctors, contravariant, ghc-prim, HUnit
, profunctors, stdenv, tagged, transformers
}:
mkDerivation {
pname = "one-liner";
version = "0.9.2";
sha256 = "deadbeef";
libraryHaskellDepends = [
base bifunctors contravariant ghc-prim profunctors tagged
transformers
];
testHaskellDepends = [ base contravariant HUnit ];
homepage = "https://github.com/sjoerdvisscher/one-liner";
description = "Constraint-based generics";
license = stdenv.lib.licenses.bsd3;
}