about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2018-07-04 13:59:41 +0200
committerGitHub <noreply@github.com>2018-07-04 13:59:41 +0200
commitfac943fc816e52af8628e970c84881e6cd2077e7 (patch)
tree68291049ab1e480798ed677b1c2e70ce67c967e0 /pkgs/applications/science
parenteb8e68b41b69f335877ce560dae00e93068cd76e (diff)
parente3ea68595715bb18ad34238951bb7dbb3c2ef20a (diff)
downloadnixlib-fac943fc816e52af8628e970c84881e6cd2077e7.tar
nixlib-fac943fc816e52af8628e970c84881e6cd2077e7.tar.gz
nixlib-fac943fc816e52af8628e970c84881e6cd2077e7.tar.bz2
nixlib-fac943fc816e52af8628e970c84881e6cd2077e7.tar.lz
nixlib-fac943fc816e52af8628e970c84881e6cd2077e7.tar.xz
nixlib-fac943fc816e52af8628e970c84881e6cd2077e7.tar.zst
nixlib-fac943fc816e52af8628e970c84881e6cd2077e7.zip
Merge pull request #42897 from fragamus/master
add bliss package
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/bliss/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/applications/science/math/bliss/default.nix b/pkgs/applications/science/math/bliss/default.nix
new file mode 100644
index 000000000000..b96aa60da686
--- /dev/null
+++ b/pkgs/applications/science/math/bliss/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchurl, unzip, doxygen }:
+
+stdenv.mkDerivation rec {
+  name = "bliss-${version}";
+  version = "0.73";
+
+  src = fetchurl {
+    url = "http://www.tcs.hut.fi/Software/bliss/${name}.zip";
+    sha256 = "f57bf32804140cad58b1240b804e0dbd68f7e6bf67eba8e0c0fa3a62fd7f0f84";
+  };
+
+  patches = fetchurl {
+    url = "http://scip.zib.de/download/bugfixes/scip-5.0.1/bliss-0.73.patch";
+    sha256 = "815868d6586bcd49ff3c28e14ccb536d38b2661151088fe08187c13909c5dab0";
+  };
+
+  nativeBuildInputs = [ unzip doxygen ];
+
+  preBuild = ''
+    doxygen Doxyfile
+  '';
+
+  installPhase = ''
+    mkdir -p $out/bin $out/share/doc/bliss $out/lib $out/include
+    mv bliss $out/bin 
+    mv html/* COPYING* $out/share/doc/bliss
+    mv *.a $out/lib
+    mv *.h *.hh $out/include
+  '';
+
+  meta = with stdenv.lib; {
+    description = "bliss is an open source tool for computing automorphism groups and canonical forms of graphs. It has both a command line user interface as well as C++ and C programming language APIs.";
+    homepage = http://www.tcs.hut.fi/Software/bliss/;
+    license = licenses.lgpl3;
+    platforms = [ "i686-linux" "x86_64-linux" ];
+  };
+}