nota: init at 1.0

Fixes #77590.

authored by

Will Dietz and committed by
Jon
afe90524 a5219535

+42 -1
+40
pkgs/applications/science/math/nota/default.nix
···
··· 1 + { mkDerivation, haskellPackages, fetchurl, lib }: 2 + 3 + mkDerivation rec { 4 + pname = "nota"; 5 + version = "1.0"; 6 + 7 + # Can't use fetchFromGitLab since codes.kary.us doesn't support https 8 + src = fetchurl { 9 + url = "http://codes.kary.us/nota/nota/-/archive/V${version}/nota-V${version}.tar.bz2"; 10 + sha256 = "0bbs6bm9p852hvqadmqs428ir7m65h2prwyma238iirv42pk04v8"; 11 + }; 12 + 13 + postUnpack = '' 14 + export sourceRoot=$sourceRoot/source 15 + ''; 16 + 17 + isLibrary = false; 18 + isExecutable = true; 19 + 20 + libraryHaskellDepends = with haskellPackages; [ 21 + base 22 + bytestring 23 + array 24 + split 25 + scientific 26 + parsec 27 + ansi-terminal 28 + regex-compat 29 + containers 30 + terminal-size 31 + numbers 32 + text 33 + time 34 + ]; 35 + 36 + description = "The most beautiful command line calculator"; 37 + homepage = "https://kary.us/nota"; 38 + license = lib.licenses.mpl20; 39 + maintainers = with lib.maintainers; [ dtzWill ]; 40 + }
+2 -1
pkgs/top-level/all-packages.nix
··· 23915 23916 nasc = callPackage ../applications/science/math/nasc { }; 23917 23918 openblas = callPackage ../development/libraries/science/math/openblas { }; 23919 23920 # A version of OpenBLAS using 32-bit integers on all platforms for compatibility with ··· 25799 sentencepiece = callPackage ../development/libraries/sentencepiece {}; 25800 25801 kcli = callPackage ../development/tools/kcli {}; 25802 - 25803 }
··· 23915 23916 nasc = callPackage ../applications/science/math/nasc { }; 23917 23918 + nota = haskellPackages.callPackage ../applications/science/math/nota { }; 23919 + 23920 openblas = callPackage ../development/libraries/science/math/openblas { }; 23921 23922 # A version of OpenBLAS using 32-bit integers on all platforms for compatibility with ··· 25801 sentencepiece = callPackage ../development/libraries/sentencepiece {}; 25802 25803 kcli = callPackage ../development/tools/kcli {}; 25804 }