ma pkgs.ns-atmosphere-programmer: init
This commit is contained in:
parent
01aac346b8
commit
45bef5bab3
36
5pkgs/ns-atmosphere-programmer/default.nix
Normal file
36
5pkgs/ns-atmosphere-programmer/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ stdenv, fetchzip
|
||||||
|
, makeWrapper
|
||||||
|
, autoPatchelfHook
|
||||||
|
, xlibs
|
||||||
|
, gnome3
|
||||||
|
, libpng12
|
||||||
|
}:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ns-atmosphere-programmer-${version}";
|
||||||
|
version = "0.1";
|
||||||
|
|
||||||
|
src = fetchzip {
|
||||||
|
url = "http://www.ns-atmosphere.com/media/content/ns-atmosphere-programmer-linux-v01.zip";
|
||||||
|
sha256 = "0g2fxbirgi0lm0mi69cmknqj7626fxjkwn98bqx5pcalxplww8k0";
|
||||||
|
};
|
||||||
|
|
||||||
|
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
|
||||||
|
wrapProgram $out/bin/NS-Atmosphere --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" \
|
||||||
|
--suffix XDG_DATA_DIRS : '${gnome3.defaultIconTheme}/share'
|
||||||
|
'';
|
||||||
|
|
||||||
|
dontStrip = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Payload programmer for ns-atmosphere injector";
|
||||||
|
homepage = http://www.ns-atmosphere.com;
|
||||||
|
maintainers = [ maintainers.makefu ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = with licenses; [ unfree ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue