codipack: init at 2.3.1

authored by Troels Henriksen and committed by Emery Hemingway 6d950ec9 3c09a5b4

+36
+36
pkgs/by-name/co/codipack/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + pkg-config, 6 + cmake, 7 + nix-update-script, 8 + }: 9 + 10 + stdenv.mkDerivation (finalAttrs: { 11 + pname = "codipack"; 12 + version = "2.3.1"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "SciCompKL"; 16 + repo = "CoDiPack"; 17 + tag = "v${finalAttrs.version}"; 18 + hash = "sha256-ZD9P4yWcF9zGeTyw6ENAcGoPyc8QcBdNZNnqRV4MH8s="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + cmake 23 + pkg-config 24 + ]; 25 + 26 + passthru.updateScript = nix-update-script { }; 27 + 28 + meta = { 29 + description = "Fast gradient evaluation in C++ based on Expression Templates"; 30 + homepage = "https://scicomp.rptu.de/software/codi/"; 31 + license = lib.licenses.gpl3Plus; 32 + maintainers = with lib.maintainers; [ 33 + athas 34 + ]; 35 + }; 36 + })