about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/CoinMP
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/CoinMP')
-rw-r--r--nixpkgs/pkgs/development/libraries/CoinMP/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/CoinMP/default.nix b/nixpkgs/pkgs/development/libraries/CoinMP/default.nix
new file mode 100644
index 000000000000..7fecae0a66e7
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/CoinMP/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "CoinMP-${version}";
+  version = "1.8.3";
+
+  src = fetchurl {
+    url = "https://www.coin-or.org/download/source/CoinMP/${name}.tgz";
+    sha256 = "1xr2iwbbhm6l9hwiry5c10pz46xfih8bvzrzwp0nkzf76vdnb9m1";
+  };
+
+  hardeningDisable = [ "format" ];
+
+  meta = with stdenv.lib; {
+    homepage = https://projects.coin-or.org/CoinMP/;
+    description = "COIN-OR lightweight API for COIN-OR libraries CLP, CBC, and CGL";
+    platforms = platforms.linux;
+    license = licenses.epl10;
+  };
+}