nixpkgs/pkgs/development/libraries/haskell/streamproc/default.nix

19 lines
493 B
Nix
Raw Normal View History

{ cabal, Cabal }:
cabal.mkDerivation (self: {
pname = "streamproc";
version = "1.6";
sha256 = "0bb1rdzzpjggw7dk4q3hwa1j1bvkfqhz6vrd45shcp57ixqlp6ws";
buildDepends = [ Cabal ];
meta = {
homepage = "http://gitorious.org/streamproc";
description = "Stream Processer Arrow";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})