-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
507 additions
and
384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
388 changes: 388 additions & 0 deletions
388
...ces/hyprpanel-tokyonight-3419315e658e67f8fb5e9f020b322e3387e2a239/themes/tokyo_night.json
Large diffs are not rendered by default.
Oops, something went wrong.
354 changes: 0 additions & 354 deletions
354
...ces/hyprpanel-tokyonight-e71a2dfe2dc0418d53841f0831ce7425d9f402e1/themes/tokyo_night.json
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
# Reference: https://github.com/colonelpanic8/dotfiles/blob/4e3e75c3e27372f3b7694fc3239bff6013d64ed9/nixos/overlay.nix | ||
{ pkgs, ... }: | ||
{ pkgs, inputs, ... }: | ||
let | ||
generated = pkgs.callPackage ../_sources/generated.nix { }; | ||
in | ||
{ | ||
nixpkgs.overlays = [ | ||
inputs.rust-overlay.overlays.default | ||
(import ./ghr.nix generated.ghr) | ||
(import ./rustowl.nix generated.rustowl) | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
gen: self: prev: | ||
# https://github.com/NixOS/nixpkgs/issues/383059 | ||
let | ||
rust-toolchain = gen.src + "/rustowl/rust-toolchain.toml"; | ||
toolchain = self.rust-bin.fromRustupToolchainFile rust-toolchain; | ||
nightlyRustPlatform = self.makeRustPlatform { cargo = toolchain; rustc = toolchain; }; | ||
in | ||
{ | ||
rustowl = with self; nightlyRustPlatform.buildRustPackage rec { | ||
inherit (gen) version; | ||
pname = "cargo-owl"; | ||
name = gen.pname; | ||
|
||
src = gen.src + "/rustowl"; | ||
|
||
cargoLock.lockFile = "${src}/Cargo.lock"; | ||
useFetchCargoVendor = true; | ||
|
||
nativeBuildInputs = [ pkg-config ]; | ||
buildInputs = [ curl ]; | ||
|
||
meta = with lib; { | ||
description = "A Rust library for parsing and manipulating OWL files."; | ||
homepage = "https://github.com/cordx56/rustowl"; | ||
license = with licenses; [ mit ]; | ||
}; | ||
}; | ||
} |