This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
AsaJS/packages/winegdk.nix
2026-04-15 10:44:52 +07:00

14 lines
301 B
Nix

{
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "winegdk";
version = "1.0.0";
src = fetchFromGitHub {
owner = "Weather-OS";
repo = "winegdk";
rev = "5cffa07a43a61a2fd1695d714b85b5b44852d55b";
sha256 = "000000000000000000000000000000000000000000000000000";
};
}