mirror of
https://github.com/SpyHoodle/PrideFetch.git
synced 2024-11-09 21:25:42 +00:00
Merge branch 'master' into default
This commit is contained in:
commit
7207ce9e33
@ -45,6 +45,7 @@ mv pridefetch /usr/bin/
|
|||||||
|
|
||||||
## Running on NixOS
|
## Running on NixOS
|
||||||
#### If your system supports flakes
|
#### If your system supports flakes
|
||||||
|
> ⚠ Note: This has only been tried on x86_64-linux; while it may work if your system is something different I have only tested it
|
||||||
You can run pridefetch quickly
|
You can run pridefetch quickly
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
10
flake.nix
10
flake.nix
@ -4,11 +4,14 @@
|
|||||||
outputs = { self, nixpkgs }: let
|
outputs = { self, nixpkgs }: let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
||||||
|
forAllSystems = f: nixpkgs.lib.genAttrs nixpkgs.lib.systems.supported.hydra (system: f system);
|
||||||
|
in rec {
|
||||||
|
packages = forAllSystems (system: let
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
};
|
};
|
||||||
in rec {
|
in {
|
||||||
packages."${system}".pridefetch = pkgs.stdenv.mkDerivation {
|
pridefetch = pkgs.stdenv.mkDerivation {
|
||||||
name = "pridefetch";
|
name = "pridefetch";
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
(pkgs.python39.withPackages (pythonPackages: with pythonPackages; [
|
(pkgs.python39.withPackages (pythonPackages: with pythonPackages; [
|
||||||
@ -23,7 +26,8 @@
|
|||||||
chmod +x $out/bin/pridefetch
|
chmod +x $out/bin/pridefetch
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
});
|
||||||
|
|
||||||
defaultPackage."${system}" = packages."${system}".pridefetch;
|
defaultPackage = forAllSystems (system: self.packages.${system}.pridefetch);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user