Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
648 B
Nix
35 lines
648 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
libX11,
|
|
libXext,
|
|
libXt,
|
|
xorgproto,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xosd";
|
|
version = "2.2.14";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libxosd/${pname}-${version}.tar.gz";
|
|
sha256 = "025m7ha89q29swkc7s38knnbn8ysl24g2h5s7imfxflm91psj7sg";
|
|
};
|
|
|
|
buildInputs = [
|
|
libX11
|
|
libXext
|
|
libXt
|
|
xorgproto
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Displays text on your screen";
|
|
homepage = "https://sourceforge.net/projects/libxosd";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|