X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=default.nix;h=4e50c59f397510a10e7a725c6a18a4f55a9d757c;hb=c7f50486428f67b91dea675704288134f835674c;hp=61b5d25504d376414dec2c48e6e432ad0ca72bce;hpb=a98e2320b1df0dc33dc1389712dece0ab8b8975b;p=perso%2FImmae%2FConfig%2FNix.git diff --git a/default.nix b/default.nix index 61b5d25..4e50c59 100644 --- a/default.nix +++ b/default.nix @@ -1,3 +1,4 @@ +with import ./libs.nix; with import {}; let mypkgs = {}; @@ -16,24 +17,6 @@ let } ''; - fetchedGithub = path: - let - json = lib.importJSON path; - in rec { - version = json.tag; - name = "${json.meta.name}-${version}"; - src = fetchFromGitHub json.github; - }; - - fetchedGit = path: - let - json = lib.importJSON path; - in rec { - version = json.tag; - name = "${json.meta.name}-${version}"; - src = fetchgit json.git; - }; - mypkgs.ledger = (ledger.override { boost = boost166; }).overrideAttrs (_old: fetchedGithub ./fetched/ledger.json // { postInstall = ""; @@ -92,7 +75,7 @@ let configureFlags = old.configureFlags ++ [ "--enable-plugins" ]; }); - mypkgs.weechat = weechat.override { + mypkgs.weechat = nixpkgs_unstable.weechat.override { configure = { availablePlugins, ... }: { plugins = with availablePlugins; [ (python.withPackages (ps: with ps; [websocket_client emoji])) @@ -101,7 +84,7 @@ let }; }; - buildPerlPackage = callPackage { }; + buildPerlPackage = perlPackages.buildPerlPackage; mypkgs.note = buildPerlPackage rec { name = "note-1.3.26"; src = fetchurl { @@ -109,7 +92,7 @@ let sha256 = "1h645rnb5vpms48fcyzvp7cwwcbf9k5xq49w2bpniyzzgk2brjrq"; }; outputs = ["out" "man"]; - propragatedBuildInputs = [ perlPackages.YAML ]; + propagatedBuildInputs = [ perlPackages.YAML ]; meta = with stdenv.lib; { description = "A perl script for maintaining notes"; homepage = http://www.daemon.de/NOTE; @@ -129,7 +112,7 @@ let ./patches/terminal_velocity_sort_found_notes.patch ]; - propagatedBuildInputs = [ chardet urwid sh pyyaml ]; + propagatedBuildInputs = [ chardet urwid nixpkgs_unstable.python2Packages.sh pyyaml ]; buildInputs = [ m2r restructuredtext_lint pygments ]; src = fetchPypi { @@ -257,6 +240,26 @@ let # cp docs/nagnu.8 $out/share/man/man8 # ''; # }); + + mastodon = stdenv.mkDerivation (fetchedGithub ./fetched/mastodon.json // rec { + buildPhase = '' + export GIT_SSL_CAINFO=${cacert}/etc/ssl/certs/ca-bundle.crt + export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt + + bundle install --deployment --without development test + yarn install --pure-lockfile + ''; + installPhase = '' + cp -a . $out + ''; + propagatedBuildInputs = [ + zlib icu libchardet git bundler yarn + protobuf protobufc libidn libpqxx nodejs + imagemagick ffmpeg libxml2 libxslt pkgconfig + autoconf bison libyaml readline ncurses libffi gdbm + jemalloc which postgresql python3 cacert + ]; + }); # https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh # https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks in @@ -266,7 +269,6 @@ in inherit timewarrior; inherit sc-im; inherit pal; - inherit duplicity duply; inherit pdftk; inherit googler; inherit jrnl; @@ -296,7 +298,25 @@ in inherit keybase; inherit bogofilter; inherit mtr; + inherit nixops; + stgit = gitAndTools.stgit; + #inherit mastodon; # todo: lx* ?, unrar, unzip, zeromq? #inherit nextcloud-client; #inherit nixos; - } + } // (with nixpkgs_unstable; { + inherit googler; + inherit khal; + inherit newsboat; + inherit xmr-stak; + inherit urlwatch; + inherit graphicsmagick; + inherit ncmpc; + inherit solc; + inherit w3m lynx links; + inherit valgrind; + inherit ranger; + inherit strace; + inherit notmuch; + stgit = gitAndTools.stgit; + })