3
0
Fork 0
forked from mirrors/nixpkgs

Added version info, set compatible platforms

Thanks for the review @nlewo and @Infinisil
This commit is contained in:
nocent 2018-04-24 15:32:47 +00:00 committed by GitHub
parent 4959111f30
commit 0ada4b37d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,14 @@
{ stdenv, makeWrapper, fetchFromGitHub, cmake, alsaLib, mesa_glu, libXcursor, libXinerama, libXrandr, xorgserver }: { stdenv, makeWrapper, fetchFromGitHub, cmake, alsaLib, mesa_glu, libXcursor, libXinerama, libXrandr, xorgserver }:
let stdenv.mkDerivation rec {
name = "bonzomatic"; name = "${pname}-${version}";
in stdenv.mkDerivation { pname = "bonzomatic";
inherit name; version = "2018-03-29";
src = fetchFromGitHub { src = fetchFromGitHub {
repo = name;
owner = "Gargaj"; owner = "Gargaj";
rev = "2018-03-29"; repo = pname;
rev = version;
sha256 = "12mdfjvbhdqz1585772rj4cap8m4ijfci6ib62jysxjf747k41fg"; sha256 = "12mdfjvbhdqz1585772rj4cap8m4ijfci6ib62jysxjf747k41fg";
}; };
@ -25,7 +25,6 @@ in stdenv.mkDerivation {
unfreeRedistributable # contains libbass.so in repository unfreeRedistributable # contains libbass.so in repository
]; ];
maintainers = [ maintainers.nocent ]; maintainers = [ maintainers.nocent ];
platforms = platforms.linux; platforms = [ "i686-linux" "x86_64-linux" ];
}; };
} }