This repository has been archived on 2025-10-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bscpkgs/pkgs/bigotes/default.nix
2025-07-29 16:54:36 +02:00

18 lines
340 B
Nix

{
stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation {
pname = "bigotes";
version = "9dce13";
src = fetchFromGitHub {
owner = "rodarima";
repo = "bigotes";
rev = "9dce13446a8da30bea552d569d260d54e0188518";
sha256 = "sha256-ktxM3pXiL8YXSK+/IKWYadijhYXqGoLY6adLk36iigE=";
};
nativeBuildInputs = [ cmake ];
}