packages feed

cabal2nix-2.8.2: test/golden-test-cases/fdo-notify.nix.golden

{ mkDerivation, base, containers, dbus, fetchurl }:
mkDerivation {
  pname = "fdo-notify";
  version = "0.3.1";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  libraryHaskellDepends = [ base containers dbus ];
  homepage = "http://bitbucket.org/taejo/fdo-notify/";
  description = "Desktop Notifications client";
  license = stdenv.lib.licenses.bsd3;
}