diff options
author | Ben Sima <ben@bsima.me> | 2019-02-22 15:22:49 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-02-23 13:25:47 -0800 |
commit | 9b2b49e9063d805e68acbef40989075f1b1a6576 (patch) | |
tree | c2c5464bb2b6b3bf2c9109d6a2218d9a6d62b222 /pack | |
parent | 3b90927e818729f2983ae7ebe5ab65c0b96bcd2a (diff) |
Package and deploy fathom
Diffstat (limited to 'pack')
-rw-r--r-- | pack/default.nix | 6 | ||||
-rw-r--r-- | pack/fathom.nix | 18 |
2 files changed, 24 insertions, 0 deletions
diff --git a/pack/default.nix b/pack/default.nix new file mode 100644 index 0000000..6c218bb --- /dev/null +++ b/pack/default.nix @@ -0,0 +1,6 @@ +self: super: + +{ + fathom = import ./fathom.nix { nixpkgs = super; }; + ibb = import ../ibb/default.nix { }; +} diff --git a/pack/fathom.nix b/pack/fathom.nix new file mode 100644 index 0000000..a845eb6 --- /dev/null +++ b/pack/fathom.nix @@ -0,0 +1,18 @@ +{ nixpkgs }: +with nixpkgs; +stdenv.mkDerivation rec { + name = "fathom-v${version}"; + version = "1.2.1"; + src = builtins.fetchurl { + url = "https://github.com/usefathom/fathom/releases/download/v${version}/fathom_${version}_linux_amd64.tar.gz"; + sha256 = "0sfpxh2xrvz992k0ynib57zzpcr0ikga60552i14m13wppw836nh"; + }; + sourceRoot = "."; + dontBuild = true; + installPhase = '' + mkdir -p $out/bin + cp fathom $out/bin + cp LICENSE $out + cp README.md $out + ''; +} |