1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/tostring/default.nix

14 lines
353 B
Nix
Raw Normal View History

{ cabal, text, utf8String }:
cabal.mkDerivation (self: {
pname = "tostring";
version = "0.2.0.1";
sha256 = "1gihls2xslr9fzad2659zv8af9k4cm84888nhx3z9bwasviyg448";
buildDepends = [ text utf8String ];
meta = {
description = "The ToString class";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})