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