packages feed

cabal2nix-2.8.2: test/golden-test-cases/drawille.nix.golden

{ mkDerivation, base, containers, fetchurl, hspec, QuickCheck }:
mkDerivation {
  pname = "drawille";
  version = "0.1.2.0";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [ base containers ];
  testHaskellDepends = [ base containers hspec QuickCheck ];
  homepage = "https://github.com/yamadapc/haskell-drawille#readme";
  description = "A port of asciimoo's drawille to haskell";
  license = stdenv.lib.licenses.gpl3;
}