oppai-ng: init at 3.2.2
This commit is contained in:
parent
ba16a39aa4
commit
e1208593d3
2 changed files with 34 additions and 0 deletions
32
pkgs/tools/misc/oppai-ng/default.nix
Normal file
32
pkgs/tools/misc/oppai-ng/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "oppai-ng";
|
||||
version = "3.2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Francesco149";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1cq8kvw33dnafs06j54qgc475jma81g7mh0pmiinybfgzypm4fmx";
|
||||
};
|
||||
|
||||
buildPhase = ''
|
||||
./build
|
||||
./libbuild
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
install -D oppai $out/bin/oppai
|
||||
install -D oppai.c $out/include/oppai.c
|
||||
install -D liboppai.so $out/lib/liboppai.so
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "difficulty and pp calculator for osu!";
|
||||
homepage = "https://github.com/Francesco149/oppai-ng";
|
||||
license = licenses.unlicense;
|
||||
maintainers = with maintainers; [ tadeokondrak ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -5053,6 +5053,8 @@ in
|
|||
stdenv = clangStdenv;
|
||||
};
|
||||
|
||||
oppai-ng = callPackage ../tools/misc/oppai-ng { };
|
||||
|
||||
update-resolv-conf = callPackage ../tools/networking/openvpn/update-resolv-conf.nix { };
|
||||
|
||||
opae = callPackage ../development/libraries/opae { };
|
||||
|
|
Loading…
Reference in a new issue