Make the flake actually work (needed to reference src directory properly)

This commit is contained in:
Skyler Grey 2022-05-24 20:46:35 +01:00
parent d0a71df7e9
commit a0122e1bee
No known key found for this signature in database
GPG Key ID: 1AFD10256B3C714D

View File

@ -13,18 +13,20 @@
in {
pridefetch = pkgs.stdenv.mkDerivation {
name = "pridefetch";
buildInputs = [
(pkgs.python39.withPackages (pythonPackages: with pythonPackages; [
buildInputs = with pkgs; [
(python39.withPackages (pythonPackages: with pythonPackages; [
distro
]))
zip
];
unpackPhase = "true";
installPhase = ''
mkdir -p $out/bin
cd src
zip -r ../pridefetch.zip *
echo '#!/usr/bin/env python' | cat - pridefetch.zip > $out/bin/pridefetch
cd ${./src}
zip -r $out/pridefetch.zip *
echo '#!/usr/bin/env python' | cat - $out/pridefetch.zip > $out/bin/pridefetch
chmod +x $out/bin/pridefetch
rm $out/pridefetch.zip
'';
meta = with pkgs.lib; {
description = "Print out system statistics with pride flags";