commit
d929ec331e
28
pkgs/development/libraries/libcs50/default.nix
Normal file
28
pkgs/development/libraries/libcs50/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "libcs50";
|
||||
version = "11.0.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cs50";
|
||||
repo = "libcs50";
|
||||
rev = "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; {
|
||||
homepage = "https://github.com/cs50/libcs50";
|
||||
description = "CS50 Library for C";
|
||||
license = licenses.gpl3Only;
|
||||
};
|
||||
})
|
@ -21695,6 +21695,8 @@ with pkgs;
|
||||
|
||||
libcrossguid = callPackage ../development/libraries/libcrossguid { };
|
||||
|
||||
libcs50 = callPackage ../development/libraries/libcs50 { };
|
||||
|
||||
libuchardet = callPackage ../development/libraries/libuchardet { };
|
||||
|
||||
libchop = callPackage ../development/libraries/libchop { };
|
||||
|
Loading…
Reference in New Issue
Block a user