2729373cd1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/clib/versions
28 lines
606 B
Nix
28 lines
606 B
Nix
{ stdenv, fetchFromGitHub, curl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.8.1";
|
|
name = "clib-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = version;
|
|
owner = "clibs";
|
|
repo = "clib";
|
|
sha256 = "1kl8amlw0106jsvv71a7nifhff1jdvgsrxr7l7hfr75i506q8976";
|
|
};
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
|
|
buildInputs = [ curl ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "C micro-package manager";
|
|
homepage = https://github.com/clibs/clib;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jb55 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|