Reviewed-by: Aleix Roca Nonell <aleix.rocanonell@bsc.es> Tested-by: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
18 lines
338 B
Nix
18 lines
338 B
Nix
{
|
|
stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bigotes";
|
|
version = "9dce13";
|
|
src = fetchFromGitHub {
|
|
owner = "rodarima";
|
|
repo = "bigotes";
|
|
rev = "9dce13446a8da30bea552d569d260d54e0188518";
|
|
sha256 = "sha256-ktxM3pXiL8YXSK+/IKWYadijhYXqGoLY6adLk36iigE=";
|
|
};
|
|
buildInputs = [ cmake ];
|
|
}
|