Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / gxmessage / default.nix
blobfb172eb22b016afec2bd3acd61df22d918a05b5a
1 { lib, stdenv, fetchurl, gtk3, intltool, pkg-config, texinfo }:
3 stdenv.mkDerivation rec {
4   pname = "gxmessage";
5   version = "3.4.3";
7   src = fetchurl {
8     url = "https://trmusson.dreamhosters.com/stuff/${pname}-${version}.tar.gz";
9     sha256 = "db4e1655fc58f31e5770a17dfca4e6c89028ad8b2c8e043febc87a0beedeef05";
10   };
12   nativeBuildInputs = [ pkg-config intltool ];
13   buildInputs = [ gtk3 texinfo ];
15   meta = {
16     description = "A GTK enabled dropin replacement for xmessage";
17     homepage = "https://trmusson.dreamhosters.com/programs.html#gxmessage";
18     license = lib.licenses.gpl3Plus;
19     maintainers = with lib.maintainers; [jfb];
20     platforms = with lib.platforms; linux;
21   };