mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
22e31ff60b
Note that we will continue to use nixpkgs-fmt for the time being here since nixfmt-rfc-style breaks string syntax highlighting and comments like `/* this */` get turned into `# this`. The conversion from lisp-like formatting to something else in flake.nix is a bit unfortunate, but I'd rather have a singular style for the entire code base to make things easier.
38 lines
873 B
Nix
38 lines
873 B
Nix
{ lib
|
|
, stdenv
|
|
, hyprland
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "hycov";
|
|
version = "0.36.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DreamMaoMao";
|
|
repo = "hycov";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-GHrgunfo+UARnf3OgNhdXoNFALRAmQEGhlZ8x5TBvkQ=";
|
|
};
|
|
|
|
patches = [
|
|
# Update method signatures for Hyprland 0.37.0+
|
|
(fetchpatch {
|
|
url = "https://github.com/Ayuei/hycov/commit/db6ea8a24f0a58fa69f86db49d7c853754b1b8e1.patch";
|
|
hash = "sha256-2FMHLmxuuBrui57d6kw6sfJJmtAV0vNF8sjFdaeIgf0=";
|
|
})
|
|
];
|
|
|
|
inherit (hyprland) nativeBuildInputs;
|
|
|
|
buildInputs = [ hyprland ] ++ hyprland.buildInputs;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Ayuei/hycov";
|
|
description = "Clients overview for hyprland plugin";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|