2019-03-04 07:47:18 +00:00
|
|
|
{ lib, pkgs, python3Packages, ... }:
|
|
|
|
|
|
|
|
with python3Packages; buildPythonApplication rec {
|
|
|
|
name = "Fluffy-${version}";
|
|
|
|
format = "other";
|
2019-09-25 11:55:42 +00:00
|
|
|
version = "2.9";
|
2019-03-04 07:47:18 +00:00
|
|
|
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "fourminute";
|
|
|
|
repo = "Fluffy";
|
|
|
|
rev = "v${version}";
|
2019-09-25 11:55:42 +00:00
|
|
|
sha256 = "1w1j7cdp0zpgwn7zi28z8dcbgnhxvllgh3rp1gkdjnpr4a6ngj8z";
|
2019-03-04 07:47:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
sed -e "s|/tmp|$HOME/.config/fluffy|" -i linux/fluffy.desktop
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
env
|
|
|
|
install -Dm 644 linux/80-fluffy-switch.rules "$out/etc/udev/rules.d/80-fluffy-switch.rules"
|
|
|
|
install -Dm 644 linux/fluffy.desktop "$out/usr/share/applications/fluffy.desktop"
|
|
|
|
install -Dm 644 icons/16x16/fluffy.png "$out/share/icons/hicolor/16x16/apps/fluffy.png"
|
|
|
|
install -Dm 644 icons/24x24/fluffy.png "$out/share/icons/hicolor/24x24/apps/fluffy.png"
|
|
|
|
install -Dm 644 icons/32x32/fluffy.png "$out/share/icons/hicolor/32x32/apps/fluffy.png"
|
|
|
|
install -Dm 644 icons/48x48/fluffy.png "$out/share/icons/hicolor/48x48/apps/fluffy.png"
|
|
|
|
install -Dm 644 icons/64x64/fluffy.png "$out/share/icons/hicolor/64x64/apps/fluffy.png"
|
|
|
|
install -Dm 644 icons/128x128/fluffy.png "$out/share/icons/hicolor/128x128/apps/fluffy.png"
|
|
|
|
install -Dm 755 fluffy.pyw "$out/bin/fluffy"
|
|
|
|
wrapProgram "$out/bin/fluffy" --set PYTHONPATH "$PYTHONPATH"
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pyqt5 pyusb libusb1 configparser tkinter
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://github.com/fourminute/Fluffy;
|
|
|
|
description = "A feature-rich tool for installing NSPs";
|
|
|
|
license = lib.licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|