1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

feat(packages): add ix.io client

This commit is contained in:
Kierán Meinhardt
2020-04-09 11:39:14 +02:00
parent 70f0cb6bf2
commit b5b18e46dc
3 changed files with 16 additions and 0 deletions

View File

@@ -114,6 +114,8 @@ in
writeDashBin = super.writers.writeDashBin;
writeDash = super.writers.writeDash;
ix = super.callPackage <niveum/packages/ix.nix> {};
text2pdf = super.callPackage <niveum/packages/text2pdf.nix> {};
iolanguage = super.callPackage <niveum/packages/iolanguage.nix> {};
nix-git = super.callPackage <niveum/packages/nix-git.nix> {};

View File

@@ -34,6 +34,7 @@
httpie
whois
ddgr
ix
# python3Packages.instaloader
# mtr # my traceroute
] ++ [

13
packages/ix.nix Normal file
View File

@@ -0,0 +1,13 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "ix";
src = fetchurl {
url = "https://ix.io/client";
sha256 = "0xc2s4s1aq143zz8lgkq5k25dpf049dw253qxiav5k7d7qvzzy57";
};
phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out/bin
install $src $out/bin/ix
'';
}