nixpkgs/pkgs/development/libraries/haskell/salvia-protocol/default.nix
Andres Löh b18dd91057 Removing trailing whitespace.
svn path=/nixpkgs/trunk/; revision=26570
2011-03-28 15:04:00 +00:00

15 lines
441 B
Nix

{cabal, fclabels, parsec, safe, split, utf8String, bimap}:
cabal.mkDerivation (self : {
pname = "salvia-protocol";
version = "1.0.1";
sha256 = "6b2312e52efaa81feec7461b1a3db77e1f2a8dfd829ae878b614c206a5e48928";
propagatedBuildInputs = [fclabels parsec safe split utf8String bimap];
meta = {
description = "Salvia webserver protocol suite";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})