add wingdk
This commit is contained in:
parent
04620a4683
commit
ca4e3f77b7
3 changed files with 17 additions and 0 deletions
|
|
@ -9,4 +9,5 @@
|
|||
cursors = name;
|
||||
size = size;
|
||||
});
|
||||
winegdk = import ./winegdk.nix;
|
||||
}
|
||||
|
|
|
|||
14
packages/winegdk.nix
Normal file
14
packages/winegdk.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
stdenv.mkDerivation {
|
||||
pname = "winegdk";
|
||||
version = "1.0.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "Weather-OS";
|
||||
repo = "winegdk";
|
||||
rev = "5cffa07a43a61a2fd1695d714b85b5b44852d55b";
|
||||
sha256 = "000000000000000000000000000000000000000000000000000";
|
||||
};
|
||||
}
|
||||
Reference in a new issue