lol

Merge pull request #193440 from figsoda/faketty

faketty: init at 1.0.10

authored by

Fabian Affolter and committed by
GitHub
3c081446 8ba12042

+26
+24
pkgs/tools/misc/faketty/default.nix
··· 1 + { lib, rustPlatform, fetchCrate }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "faketty"; 5 + version = "1.0.10"; 6 + 7 + src = fetchCrate { 8 + inherit pname version; 9 + sha256 = "sha256-Jljq22xbXakwKdf5TXBXzuKuKJOBjf6lzCy8aHrVC3U="; 10 + }; 11 + 12 + cargoSha256 = "sha256-K0hNnqw178b7noHW76DMR0BoYhkrQpPQeHaH6Azt3Xo="; 13 + 14 + postPatch = '' 15 + patchShebangs tests/test.sh 16 + ''; 17 + 18 + meta = with lib; { 19 + description = "A wrapper to execute a command in a pty, even if redirecting the output"; 20 + homepage = "https://github.com/dtolnay/faketty"; 21 + license = with licenses; [ asl20 /* or */ mit ]; 22 + maintainers = with maintainers; [ figsoda ]; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 3891 3891 3892 3892 facter = callPackage ../tools/system/facter { }; 3893 3893 3894 + faketty = callPackage ../tools/misc/faketty { }; 3895 + 3894 3896 fasd = callPackage ../tools/misc/fasd { }; 3895 3897 3896 3898 fastJson = callPackage ../development/libraries/fastjson { };