summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2022-01-02 21:36:44 +0100
committermakefu <github@syntax-fehler.de>2022-01-02 21:36:44 +0100
commit81cc5dc969a5cde6e26ee5061dc57cbbbf758450 (patch)
treebdcc3d2f51d36a6495f92d4d56fd255f90bc1df6
parent7766b006a8c10453d3111cf41d5852176375c677 (diff)
ma pkgs.pkgrename: init
-rw-r--r--makefu/5pkgs/pkgrename/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/makefu/5pkgs/pkgrename/default.nix b/makefu/5pkgs/pkgrename/default.nix
new file mode 100644
index 000000000..5eeb161e7
--- /dev/null
+++ b/makefu/5pkgs/pkgrename/default.nix
@@ -0,0 +1,30 @@
+{ lib, stdenv, fetchFromGitHub, curl
+}:
+stdenv.mkDerivation rec {
+ name = "pkgrename";
+ version = "1.03";
+
+ src = fetchFromGitHub {
+ owner = "hippie68";
+ repo = "pkgrename";
+ rev = "c3e5c47ed9367273bd09577af46d3d9bf87b2a50";
+ sha256 = "0cphxdpj04h1i0qf5mji3xqdsbyilvd5b4gwp4vx914r6k5f0xf3";
+ };
+
+ buildInputs = [ curl.dev ];
+ buildPhase = ''
+ cd pkgrename.c
+ gcc pkgrename.c src/*.c -o pkgrename -lcurl -s -O1 $(curl-config --cflags --libs)
+ '';
+ installPhase = ''
+ install -D pkgrename $out/bin/pkgrename
+ '';
+
+ meta = {
+ description = "Tool to rename ps4 .pkg files";
+ homepage = "https://github.com/hippie68/pkgrename";
+ license = lib.licenses.gpl3;
+ platforms = lib.platforms.linux;
+ maintainers = with lib.maintainers; [ makefu ];
+ };
+}