overlays/nixd: 1.0.0 -> 1.1.0
This commit is contained in:
parent
da2a9d37d1
commit
ce036c5afa
@ -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
20
overlays/nixd.nix
Normal 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
|
9
pull_requests/238779.json
Normal file
9
pull_requests/238779.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"branches": [],
|
||||
"error": "",
|
||||
"pull_request": 238779,
|
||||
"release": "stable",
|
||||
"status": "open",
|
||||
"status_info": {},
|
||||
"title": "nixd: add `bison``flex` to nativeBuildInputs"
|
||||
}
|
Loading…
Reference in New Issue
Block a user