nixpkgs/pkgs/by-name/pr/proycon-wayout/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

49 lines
1.1 KiB
Nix

{ stdenv
, lib
, fetchFromSourcehut
, meson
, wayland-protocols
, wayland
, cairo
, pango
, scdoc
, ninja
, cmake
, pkg-config
, wayland-scanner
}:
stdenv.mkDerivation rec {
pname = "proycon-wayout";
version = "0.1.3";
src = fetchFromSourcehut {
owner = "~proycon";
repo = "wayout";
rev = version;
sha256 = "sha256-pxHz8y63xX9I425OG0jPvQVx4mAbTYHxVMMkfjZpURo=";
};
postPatch = ''
substituteInPlace meson.build --replace "'werror=true'," "" # Build fails with -Werror, remove
'';
postFixup = ''
mv $out/bin/wayout $out/bin/proycon-wayout # Avoid conflict with shinyzenith/wayout
'';
strictDeps = true;
depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [ scdoc ninja meson cmake pkg-config wayland-scanner ];
buildInputs = [ wayland-protocols wayland cairo pango ];
meta = with lib; {
description = "Takes text from standard input and outputs it to a desktop-widget on Wayland desktops";
homepage = "https://git.sr.ht/~proycon/wayout";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ wentam ];
mainProgram = "proycon-wayout";
};
}