mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 04:45:39 +00:00
571c71e6f7
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.
46 lines
1001 B
Nix
46 lines
1001 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromSourcehut
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, wayland
|
|
, pango
|
|
, wayland-protocols
|
|
, wayland-scanner
|
|
, conf ? null
|
|
}:
|
|
|
|
let
|
|
# There is a configuration in src/config.def.hpp, which we use by default
|
|
configFile = if lib.isDerivation conf || builtins.isPath conf then conf else "src/config.def.hpp";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "somebar";
|
|
version = "1.0.3";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~raphi";
|
|
repo = "somebar";
|
|
rev = version;
|
|
sha256 = "sha256-PBxCy1dZrOL1nmhVDQozvF0XL79uKMhhERGNpPPzaRU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ];
|
|
buildInputs = [ pango wayland wayland-protocols ];
|
|
|
|
prePatch = ''
|
|
cp ${configFile} src/config.hpp
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://git.sr.ht/~raphi/somebar";
|
|
description = "dwm-like bar for dwl";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ magnouvean ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "somebar";
|
|
};
|
|
}
|