bcal: init at 1.7
This commit is contained in:
parent
a1526e52b1
commit
74029a21bf
33
pkgs/applications/science/math/bcal/default.nix
Normal file
33
pkgs/applications/science/math/bcal/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, python3Packages }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "bcal-${version}";
|
||||||
|
version = "1.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jarun";
|
||||||
|
repo = "bcal";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "08cqp2jysvy743gmwpzkbqhybsb49n65r63z3if53m3y59qg4aw8";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ python3Packages.pytest ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
checkPhase = ''
|
||||||
|
python3 -m pytest test.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
makeFlags = [ "CC=cc" ];
|
||||||
|
installFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Storage conversion and expression calculator";
|
||||||
|
homepage = https://github.com/jarun/bcal;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = [ "x86_64-darwin" "x86_64-linux" ];
|
||||||
|
maintainers = with maintainers; [ jfrankenau ];
|
||||||
|
};
|
||||||
|
}
|
@ -19708,6 +19708,8 @@ with pkgs;
|
|||||||
|
|
||||||
pcalc = callPackage ../applications/science/math/pcalc { };
|
pcalc = callPackage ../applications/science/math/pcalc { };
|
||||||
|
|
||||||
|
bcal = callPackage ../applications/science/math/bcal { };
|
||||||
|
|
||||||
pspp = callPackage ../applications/science/math/pspp {
|
pspp = callPackage ../applications/science/math/pspp {
|
||||||
inherit (gnome3) gtksourceview;
|
inherit (gnome3) gtksourceview;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user