diff options
author | jeschli <jeschli@gmail.com> | 2018-12-28 14:48:30 +0100 |
---|---|---|
committer | jeschli <jeschli@gmail.com> | 2018-12-28 14:48:30 +0100 |
commit | 06b6454af78e8236a67d69cab94f62c32054be47 (patch) | |
tree | 749fd6025d2e799314cf46d51027dc23fb19c7b8 /makefu/5pkgs/ns-atmosphere-programmer/default.nix | |
parent | 8605ac91ae3a3859ab906a5fa2e9b0e3dfcd6e1e (diff) | |
parent | fb254e60949f029cc7cb48764093b49932d0acde (diff) |
Merge branch 'master' of prism.r:stockholm
Diffstat (limited to 'makefu/5pkgs/ns-atmosphere-programmer/default.nix')
-rw-r--r-- | makefu/5pkgs/ns-atmosphere-programmer/default.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/makefu/5pkgs/ns-atmosphere-programmer/default.nix b/makefu/5pkgs/ns-atmosphere-programmer/default.nix index 1e1cb1d86..88a408578 100644 --- a/makefu/5pkgs/ns-atmosphere-programmer/default.nix +++ b/makefu/5pkgs/ns-atmosphere-programmer/default.nix @@ -10,15 +10,16 @@ stdenv.mkDerivation rec { version = "0.1"; src = fetchzip { - url = "http://www.ns-atmosphere.com/media/content/ns-atmosphere-programmer-linux-v01.zip"; - sha256 = "0g2fxbirgi0lm0mi69cmknqj7626fxjkwn98bqx5pcalxplww8k0"; + 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 xlibs; [ libX11 libXxf86vm libSM gnome3.gtk libpng12 ]; nativeBuildInputs = [ autoPatchelfHook makeWrapper ]; installPhase = '' - install -D -m755 NS-Atmosphere-Programmer-Linux-v0.1/NS-Atmosphere $out/bin/NS-Atmosphere + 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 : '${gnome3.defaultIconTheme}/share' ''; @@ -26,7 +27,7 @@ stdenv.mkDerivation rec { dontStrip = true; meta = with stdenv.lib; { - description = "Payload programmer for ns-atmosphere injector"; + description = "Payload programmer for ns-atmosphere injector for nintendo switch"; homepage = http://www.ns-atmosphere.com; maintainers = [ maintainers.makefu ]; platforms = platforms.linux; |