cabal2nix-2.8.2: test/golden-test-cases/rawstring-qm.nix.golden
{ mkDerivation, base, bytestring, fetchurl, template-haskell, text
}:
mkDerivation {
pname = "rawstring-qm";
version = "0.2.3.0";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
libraryHaskellDepends = [ base bytestring template-haskell text ];
homepage = "https://github.com/tolysz/rawstring-qm";
description = "Simple raw string quotation and dictionary interpolation";
license = stdenv.lib.licenses.bsd3;
}