summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/pkg2zip/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/5pkgs/pkg2zip/default.nix')
-rw-r--r--makefu/5pkgs/pkg2zip/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/makefu/5pkgs/pkg2zip/default.nix b/makefu/5pkgs/pkg2zip/default.nix
deleted file mode 100644
index 9ab3f67d..00000000
--- a/makefu/5pkgs/pkg2zip/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ stdenv, lib, pkgs, fetchFromGitHub, ... }:
-stdenv.mkDerivation rec {
- name = "pkg2zip-2018-06-15";
- rev = "9222c4e00235dfe7914e9db0cc352da07e63d9f9";
-
- src = fetchFromGitHub {
- owner = "mmozeiko";
- repo = "pkg2zip";
- inherit rev;
- sha256 = "1zz3vi12c2c4d48vvvkdl66fx5mdszcnv7lwwlgi4b8lfn1gvkr9";
- };
-
- installPhase = ''
- install -m755 -D pkg2zip $out/bin/pkg2zip
-
- install -m755 -D rif2zrif.py $out/bin/rif2zrif
- install -m755 -D zrif2rif.py $out/bin/zrif2rif
- '';
-
- buildInputs = with pkgs;[
- python3
- ];
-
- meta = {
- homepage = https://github.com/St4rk/PkgDecrypt;
- description = "St4rk's Vita pkg decrypter";
- license = lib.licenses.gpl2;
- };
-}