nixpkgs/pkgs/development/libraries/haskell/url/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
358 B
Nix

{cabal, utf8String}:
cabal.mkDerivation (self : {
pname = "url";
version = "2.1.2";
sha256 = "2cf5c4296418afe3940ae4de66d867897b1382cc4d37a0b9a5ccffa16743ef91";
propagatedBuildInputs = [utf8String];
meta = {
description = "A library for working with URLs";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})