summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/Diff/default.nix
blob: 8ba20bf09cb383cdfef37f32b2da18ef630da744 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal, Cabal }:

cabal.mkDerivation (self: {
  pname = "Diff";
  version = "0.1.3";
  sha256 = "02dhy4rp3mkzm5x3h1rkdin2h8qcb7h7nhn14gl2gvl6wdykfh5w";
  buildDepends = [ Cabal ];
  meta = {
    description = "O(ND) diff algorithm in haskell";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})