1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

python.pkgs.pythonix: 0.1.0 -> 0.1.4

also fix the build
This commit is contained in:
Jörg Thalheim 2018-06-15 11:52:08 +01:00
parent 2658fce5eb
commit 3f9d48168b

View file

@ -1,21 +1,26 @@
{ stdenv, fetchFromGitHub, ninja, meson, pkgconfig, nixUnstable, isPy3k }:
{ stdenv, fetchFromGitHub, ninja, boost, meson, pkgconfig, nix, isPy3k }:
assert isPy3k;
stdenv.mkDerivation rec {
name = "pythonix-${version}";
version = "0.1.0";
version = "0.1.4";
src = fetchFromGitHub {
owner = "Mic92";
repo = "pythonix";
rev = "v${version}";
sha256 = "1piblysypyr442a6najk4mdh87xc377i2fdbfw6fr569z60mnnnj";
sha256 = "1q1fagfwzvmcm1n3a0liay7m5krazmhw9l001m90rrz2x7vrsqwk";
};
nativeBuildInputs = [ meson pkgconfig ninja ];
disabled = !isPy3k;
buildInputs = [ nixUnstable ];
nativeBuildInputs = [ meson ninja pkgconfig ];
buildInputs = [ nix boost ];
checkPhase = ''
ninja test
'';
meta = with stdenv.lib; {
description = ''
@ -23,6 +28,5 @@ stdenv.mkDerivation rec {
'';
maintainers = [ maintainers.mic92 ];
license = licenses.mit;
platforms = platforms.linux;
};
}