[NixOS] Add quill

This commit is contained in:
Ivan Malison 2021-07-04 03:18:00 -06:00
parent 77977fb38c
commit 23efabe6c6
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
2 changed files with 17 additions and 0 deletions

View File

@ -309,7 +309,9 @@ in
librsvg
transmission-gtk
# Internet computer
ic-keysmith
quill
];
# XXX: Plasma seems to set this

View File

@ -29,4 +29,19 @@ in
runVend = true;
};
quill = self.stdenv.mkDerivation (rec {
name = "quill";
version = "0.2.0";
phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out/bin
cp $src $out/bin/quill
chmod a+x $out/bin/quill
'';
src = self.fetchurl {
url = "https://github.com/dfinity/quill/releases/download/v${version}/quill-linux-x86_64";
sha256 = "1msgj7y8b0bh0sq14msa5jqwfn9yzwiin5l276qz0h0wjqmnndbs";
};
});
}