diff options
author | makefu <github@syntax-fehler.de> | 2023-07-28 22:24:15 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2023-07-28 22:24:15 +0200 |
commit | 060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch) | |
tree | 2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/5pkgs/ns-atmosphere-programmer | |
parent | cbfcc890e3b76d942b927809bf981a5fa7289e6a (diff) |
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/5pkgs/ns-atmosphere-programmer')
-rw-r--r-- | makefu/5pkgs/ns-atmosphere-programmer/default.nix | 38 |
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 7d9110e48..000000000 --- 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 ]; - }; - -} |