lol

libctl: init at 4.5.1

+33
+31
pkgs/development/libraries/libctl/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + , gfortran 6 + , guile 7 + , pkg-config 8 + }: 9 + 10 + stdenv.mkDerivation rec { 11 + pname = "libctl"; 12 + version = "4.5.1"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "NanoComp"; 16 + repo = pname; 17 + rev = "v${version}"; 18 + sha256 = "uOydBWYPXSBUi+4MM6FNx6B5l2to7Ny9Uc1MMTV9bGA="; 19 + }; 20 + 21 + nativeBuildInputs = [ autoreconfHook gfortran guile pkg-config ]; 22 + 23 + configureFlags = [ "--enable-shared" ]; 24 + 25 + meta = with lib; { 26 + description = "Guile-based library for supporting flexible control files in scientific simulations"; 27 + homepage = "https://github.com/NanoComp/libctl"; 28 + license = licenses.gpl2Only; 29 + maintainers = with maintainers; [ carpinchomug ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 17906 17906 17907 17907 libctemplate = callPackage ../development/libraries/libctemplate { }; 17908 17908 17909 + libctl = callPackage ../development/libraries/libctl { }; 17910 + 17909 17911 libcotp = callPackage ../development/libraries/libcotp { }; 17910 17912 17911 17913 libcouchbase = callPackage ../development/libraries/libcouchbase { };