mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
11 lines
209 B
Nix
11 lines
209 B
Nix
{ fetchurl }:
|
|
rec {
|
|
version = "1.5.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://stable.hypertriton.com/agar/agar-${version}.tar.gz";
|
|
sha256 = "001wcqk5z67qg0raw9zlwmv62drxiwqykvsbk10q2mrc6knjsd42";
|
|
};
|
|
|
|
}
|