packages feed

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

{ mkDerivation, base, fetchurl, mtl, process, strict }:
mkDerivation {
  pname = "Hclip";
  version = "3.0.0.4";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  libraryHaskellDepends = [ base mtl process strict ];
  homepage = "https://github.com/jetho/Hclip";
  description = "A small cross-platform library for reading and modifying the system clipboard";
  license = stdenv.lib.licenses.bsd3;
}