about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/data-accessor/data-accessor-template.nix
blob: d65e51a2be34387c6fe7241fb267134b08774b99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{cabal, dataAccessor, utilityHt}:

cabal.mkDerivation (self : {
  pname = "data-accessor-template";
  version = "0.2.1.7";
  sha256 = "08658axzznqxp4p4d6h0y0sp7rzj84ma6hrb4zvsxa3614vydgi4";
  propagatedBuildInputs = [dataAccessor utilityHt];
  meta = {
    description = "Utilities for accessing and manipulating the fields of records";
    license = "BSD";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})