oppai-ng: init at 3.2.2

This commit is contained in:
Tadeo Kondrak 2019-06-18 21:10:17 -06:00
parent ba16a39aa4
commit e1208593d3
No known key found for this signature in database
GPG key ID: C4654C621CD5277C
2 changed files with 34 additions and 0 deletions

View 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;
};
}

View file

@ -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 { };