PrideFetch/flake.nix
2022-05-22 20:21:50 +01:00

30 lines
722 B
Nix

{
description = "A flake to run pridefetch";
outputs = { self, nixpkgs }: let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in rec {
packages."${system}".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."${system}" = packages."${system}".pridefetch;
};
}