Merge pull request #1 from Minion3665/flake

Add a flake to pridefetch
This commit is contained in:
Madeleine 2022-05-22 21:23:29 +01:00 committed by GitHub
commit 2e69bc4c21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 73 additions and 0 deletions

View File

@ -42,3 +42,19 @@ You can also add pridefetch to your `$PATH` to run it anywhere<br>
```bash
mv pridefetch /usr/bin/
```
## Running on NixOS
#### 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
```bash
nix run github:SpyHoodle/pridefetch -- -f trans
```
Or install it
```
nix profile install github:SpyHoodle/pridefetch
pridefetch -f trans
```

24
flake.lock Normal file
View File

@ -0,0 +1,24 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1653087707,
"narHash": "sha256-zfno3snrzZTWQ2B7K53QHrGZwrjnJLTRPalymrSsziU=",
"path": "/nix/store/3g25cg20m43hvsy17d7nz0jxwk79a77w-source",
"rev": "cbd40c72b2603ab54e7208f99f9b35fc158bc009",
"type": "path"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

33
flake.nix Normal file
View File

@ -0,0 +1,33 @@
{
description = "A flake to run pridefetch";
outputs = { self, nixpkgs }: let
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 {
inherit system;
};
in {
pridefetch = pkgs.stdenv.mkDerivation {
name = "pridefetch";
buildInputs = [
(pkgs.python39.withPackages (pythonPackages: with pythonPackages; [
distro
]))
];
unpackPhase = "true";
installPhase = ''
mkdir -p $out/bin
cp ${./pridefetch} $out/bin/pridefetch
cp ${./packages.py} $out/bin/packages.py
chmod +x $out/bin/pridefetch
'';
};
});
defaultPackage = forAllSystems (system: self.packages.${system}.pridefetch);
};
}