libcs50: init at 11.0.2

This commit is contained in:
t-spr
2023-06-01 11:40:03 -04:00
parent dc9aa0c84c
commit 4c3e82df39
2 changed files with 5 additions and 3 deletions
@@ -7,15 +7,17 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchFromGitHub {
owner = "cs50";
repo = "libcs50";
rev = finalAttrs.version;
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-A4CEU5wfwykVTDIsKZnQ8co+6RwBGYGZEZxRFzQTKBI=";
};
installPhase = ''
runHook preInstall
mkdir $out
cp -R build/lib $out/lib
cp -R build/include $out/include
ln -sf $out/lib/libcs50.so.11.0.2 $out/lib/libcs50.so.11
runHook postInstall
'';
meta = with lib; {
+2 -2
View File
@@ -21614,6 +21614,8 @@ with pkgs;
libcrossguid = callPackage ../development/libraries/libcrossguid { };
libcs50 = callPackage ../development/libraries/libcs50 { };
libuchardet = callPackage ../development/libraries/libuchardet { };
libchop = callPackage ../development/libraries/libchop { };
@@ -40710,6 +40712,4 @@ with pkgs;
isolate = callPackage ../tools/security/isolate { };
reindeer = callPackage ../development/tools/reindeer { };
libcs50 = callPackage ../development/libraries/libcs50 { };
}