mirror of
https://codeberg.org/spire/nix.git
synced 2026-06-03 09:54:19 +02:00
fmt
This commit is contained in:
parent
8e8445cec9
commit
9a1881d10a
1 changed files with 15 additions and 14 deletions
|
|
@ -1,20 +1,21 @@
|
|||
{
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
}: stdenv.mkDerivation rec {
|
||||
pname = "sourcemod-include-library";
|
||||
version = "19-10-2022";
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "sourcemod-include-library";
|
||||
version = "19-10-2022";
|
||||
|
||||
dontBuild = true;
|
||||
dontBuild = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "JoinedSenses";
|
||||
repo = "SourceMod-IncludeLibrary";
|
||||
rev = "9d4e4263b77aa0c4fcdadd498c1420c64b3c1c10";
|
||||
hash = "sha256-kO3iRHr3D0qLmgMh4SD3yz14bxSUD0r9pi6dHj8dnN0=";
|
||||
};
|
||||
src = fetchFromGitHub {
|
||||
owner = "JoinedSenses";
|
||||
repo = "SourceMod-IncludeLibrary";
|
||||
rev = "9d4e4263b77aa0c4fcdadd498c1420c64b3c1c10";
|
||||
hash = "sha256-kO3iRHr3D0qLmgMh4SD3yz14bxSUD0r9pi6dHj8dnN0=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
cp -r $src $out
|
||||
'';
|
||||
}
|
||||
installPhase = ''
|
||||
cp -r $src $out
|
||||
'';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue