summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/ns-atmosphere-programmer/default.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
committermakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
commit060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch)
tree2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/5pkgs/ns-atmosphere-programmer/default.nix
parentcbfcc890e3b76d942b927809bf981a5fa7289e6a (diff)
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/5pkgs/ns-atmosphere-programmer/default.nix')
-rw-r--r--makefu/5pkgs/ns-atmosphere-programmer/default.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/makefu/5pkgs/ns-atmosphere-programmer/default.nix b/makefu/5pkgs/ns-atmosphere-programmer/default.nix
deleted file mode 100644
index 7d9110e4..00000000
--- a/makefu/5pkgs/ns-atmosphere-programmer/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ stdenv, fetchzip, lib
-, makeWrapper
-, autoPatchelfHook
-, xorg
-, libpng12
-, gtk3
-, gnome
-}:
-stdenv.mkDerivation rec {
- name = "ns-atmosphere-programmer-${version}";
- version = "0.1";
-
- src = fetchzip {
- url = "https://archive.org/download/ns-atmosphere-programmer/ns-atmosphere-programmer-ubuntu-64bit-v01.zip";
- # original source: http://www.ns-atmosphere.com/media/content/ns-atmosphere-programmer-ubuntu-64bit-v01.zip
- sha256 = "1cnyydsmrcpfwpdiry7qybh179499wpbvlzq5rk442hq9ak416ri";
- };
-
- buildInputs = with xorg; [ libX11 libXxf86vm libSM gtk3 libpng12 ];
- nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
-
- installPhase = ''
- install -D -m755 NS-Atmosphere $out/bin/NS-Atmosphere
- wrapProgram $out/bin/NS-Atmosphere --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" \
---suffix XDG_DATA_DIRS : '${gnome.adwaita-icon-theme}/share'
- '';
-
- dontStrip = true;
-
- meta = with lib; {
- description = "Payload programmer for ns-atmosphere injector for nintendo switch";
- homepage = http://www.ns-atmosphere.com;
- maintainers = [ maintainers.makefu ];
- platforms = platforms.linux;
- license = with licenses; [ unfree ];
- };
-
-}