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

cabal.mkDerivation (self: {
  pname = "hsyslog";
  version = "1.5";
  sha256 = "1dpcawnl3a5lw2w8gc9920sjrw43qmq1k2zws8rx2q0r6ps7nhgp";
  meta = {
    homepage = "http://github.com/peti/hsyslog";
    description = "FFI interface to syslog(3) from POSIX.1-2001.";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})