forked from mirrors/nixpkgs
Added version info, set compatible platforms
Thanks for the review @nlewo and @Infinisil
This commit is contained in:
parent
4959111f30
commit
0ada4b37d7
|
@ -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" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue