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,
|
stdenv,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
}: stdenv.mkDerivation rec {
|
}:
|
||||||
pname = "sourcemod-include-library";
|
stdenv.mkDerivation rec {
|
||||||
version = "19-10-2022";
|
pname = "sourcemod-include-library";
|
||||||
|
version = "19-10-2022";
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "JoinedSenses";
|
owner = "JoinedSenses";
|
||||||
repo = "SourceMod-IncludeLibrary";
|
repo = "SourceMod-IncludeLibrary";
|
||||||
rev = "9d4e4263b77aa0c4fcdadd498c1420c64b3c1c10";
|
rev = "9d4e4263b77aa0c4fcdadd498c1420c64b3c1c10";
|
||||||
hash = "sha256-kO3iRHr3D0qLmgMh4SD3yz14bxSUD0r9pi6dHj8dnN0=";
|
hash = "sha256-kO3iRHr3D0qLmgMh4SD3yz14bxSUD0r9pi6dHj8dnN0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
cp -r $src $out
|
cp -r $src $out
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue