nixos-configs/common/overlays/pkgs/coloryou/default.nix

21 lines
373 B
Nix
Raw Normal View History

2023-09-30 02:06:40 -04:00
{ python3Packages }:
2023-09-30 02:06:40 -04:00
python3Packages.buildPythonPackage rec {
pname = "coloryou";
version = "0.0.1";
2023-09-30 02:06:40 -04:00
src = ./.;
2023-09-30 02:06:40 -04:00
propagatedBuildInputs = with python3Packages; [ utils material-color-utilities ];
2023-09-30 02:06:40 -04:00
postInstall = ''
mv -v $out/bin/coloryou.py $out/bin/coloryou
'';
2023-09-30 02:06:40 -04:00
meta = {
description = ''
Get Material You colors from an image.
'';
};
}