lol
1{ lib
2, fetchFromGitHub
3, rustPlatform
4}:
5
6rustPlatform.buildRustPackage rec {
7 pname = "uq";
8 version = "unstable-2018-05-27";
9
10 src = fetchFromGitHub {
11 owner = "lostutils";
12 repo = "uq";
13 rev = "118bc2f3b1cf292afdffbc1cb4415d150b323165";
14 sha256 = "1qqqmdk0v1d3ckasmmw5lbrkvhkv0nws4bzi9cfi1ndhrbvbkbxb";
15 };
16
17 cargoSha256 = "1p6008vxm2pi9v31qhsq7zysanal6rcvcl8553373bkqlfd7w5c4";
18
19 meta = with lib; {
20 description = "A simple, user-friendly alternative to sort | uniq";
21 homepage = "https://github.com/lostutils/uq";
22 license = licenses.mit;
23 maintainers = with maintainers; [ doronbehar ];
24 };
25}