Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / misc / uq / default.nix
blob414403d81ef9db989b85d29c4cdb824cb4f2f8c7
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "uq";
8   version = "unstable-2018-05-27";
10   src = fetchFromGitHub {
11     owner = "lostutils";
12     repo = "uq";
13     rev = "118bc2f3b1cf292afdffbc1cb4415d150b323165";
14     sha256 = "1qqqmdk0v1d3ckasmmw5lbrkvhkv0nws4bzi9cfi1ndhrbvbkbxb";
15   };
17   cargoHash = "sha256-hBV+mqN4rnHGKAVRtlk2VFml/T9YQxzGTvGK2jcCwNw=";
19   meta = with lib; {
20     description = "Simple, user-friendly alternative to sort | uniq";
21     homepage = "https://github.com/lostutils/uq";
22     license = licenses.mit;
23     maintainers = with maintainers; [ doronbehar matthiasbeyer ];
24     mainProgram = "uq";
25   };