summary refs log tree commit diff
path: root/pkgs/applications/science/math/lrcalc
diff options
context:
space:
mode:
authorTimo Kaufmann <eisfreak7@gmail.com>2018-04-19 08:42:06 +0200
committerRobert Schütz <rschuetz17@gmail.com>2018-04-19 08:42:06 +0200
commitddb7c0e9308e2bb287d7953e18d9117cc5cfe381 (patch)
tree170874f99ac3c498054b024a1563a6f9f7ef4d36 /pkgs/applications/science/math/lrcalc
parent6dd9819df04263c6f4016f32ce530c10da26f784 (diff)
downloadnixpkgs-ddb7c0e9308e2bb287d7953e18d9117cc5cfe381.tar
nixpkgs-ddb7c0e9308e2bb287d7953e18d9117cc5cfe381.tar.gz
nixpkgs-ddb7c0e9308e2bb287d7953e18d9117cc5cfe381.tar.bz2
nixpkgs-ddb7c0e9308e2bb287d7953e18d9117cc5cfe381.tar.lz
nixpkgs-ddb7c0e9308e2bb287d7953e18d9117cc5cfe381.tar.xz
nixpkgs-ddb7c0e9308e2bb287d7953e18d9117cc5cfe381.tar.zst
nixpkgs-ddb7c0e9308e2bb287d7953e18d9117cc5cfe381.zip
lrcalc: init at 1.2 (#38755)
Diffstat (limited to 'pkgs/applications/science/math/lrcalc')
-rw-r--r--pkgs/applications/science/math/lrcalc/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/applications/science/math/lrcalc/default.nix b/pkgs/applications/science/math/lrcalc/default.nix
new file mode 100644
index 00000000000..9e02b08c8ad
--- /dev/null
+++ b/pkgs/applications/science/math/lrcalc/default.nix
@@ -0,0 +1,41 @@
+{ stdenv
+, fetchFromBitbucket
+, fetchpatch
+, autoreconfHook
+}:
+
+stdenv.mkDerivation rec {
+  version = "1.2";
+  pname = "lrcalc";
+  name = "${pname}-${version}";
+
+  src = fetchFromBitbucket {
+    owner = "asbuch";
+    repo = "lrcalc";
+    rev = "lrcalc-${version}";
+    sha256 = "1c12d04jdyxkkav4ak8d1aqrv594gzihwhpxvc6p9js0ry1fahss";
+  };
+
+  doCheck = true;
+
+  nativeBuildInputs = [
+    autoreconfHook
+  ];
+
+  patches = [
+    # Fix include syntax:
+    # For private includes, use `#include "..."` instead of `#include <...>`
+    (fetchpatch {
+      url = "https://bitbucket.org/asbuch/lrcalc/commits/226981a0/raw/";
+      sha256 = "02kaqx5s3l642rhh28kn2wg9wr098vzpknxyl4pv627lqa3lv9vm";
+    })
+  ];
+
+  meta = with stdenv.lib; {
+    description = "Littlewood-Richardson calculator";
+    homepage = http://math.rutgers.edu/~asbuch/lrcalc/;
+    license = licenses.gpl2Plus;
+    maintainers = with maintainers; [ timokau ];
+    platforms = platforms.linux;
+  };
+}