overlays/nixd: 1.0.0 -> 1.1.0

This commit is contained in:
Aaron Bieber 2023-06-20 14:31:25 -06:00
parent da2a9d37d1
commit ce036c5afa
No known key found for this signature in database
3 changed files with 32 additions and 1 deletions

View File

@ -8,8 +8,10 @@ let
#jetbrains = prIsOpen 232308 (import ./jetbrains.nix);
tidal-hifi = prIsOpen.overlay 238572 (import ./tidal-hifi.nix);
matrix-synapse = prIsOpen.overlay 238794 (import ./matrix-synapse.nix);
nixd = prIsOpen.overlay 238779 (import ./nixd.nix);
in {
nixpkgs.overlays = if isUnstable then [ tidal-hifi ] else [ matrix-synapse ];
nixpkgs.overlays =
if isUnstable then [ tidal-hifi nixd ] else [ matrix-synapse ];
}
# Example Python dep overlay

20
overlays/nixd.nix Normal file
View File

@ -0,0 +1,20 @@
let
nixd = _: super: {
nixd = super.nixd.overrideAttrs (_: rec {
version = "1.1.0";
src = super.fetchFromGitHub {
owner = "nix-community";
repo = "nixd";
rev = version;
hash = "sha256-zeBVh9gPMR+1ETx0ujl+TUSoeHHR4fkQfxyOpCDKP9M=";
};
nativeBuildInputs = with super.pkgs; [
meson
ninja
pkg-config
bison
flex
];
});
};
in nixd

View File

@ -0,0 +1,9 @@
{
"branches": [],
"error": "",
"pull_request": 238779,
"release": "stable",
"status": "open",
"status_info": {},
"title": "nixd: add `bison``flex` to nativeBuildInputs"
}