mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
062210bdff
A recent upgrade of cargo-vendor changed its output slightly, which broke all cargoSha256 hashes in nixpkgs. See https://github.com/NixOS/nixpkgs/issues/60668 for more information. Since then, a few hashes have been fixed in master by hand, but there were a lot still to do, so I did all of the ones left over with some scripts I wrote. The one hash I wasn’t able to update was habitat's, because it’s currently broken and the build doesn’t get far enough to produce a hash anyway.
22 lines
598 B
Nix
22 lines
598 B
Nix
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
name = "loop-unstable-2018-12-04";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Miserlou";
|
|
repo = "Loop";
|
|
rev = "598ccc8e52bb13b8aff78b61cfe5b10ff576cecf";
|
|
sha256 = "0f33sc1slg97q1aisdrb465c3p7fgdh2swv8k3yphpnja37f5nl4";
|
|
};
|
|
|
|
cargoSha256 = "19x8n39yaa924naldw6fv7mq9qb500arkhwj9jz2fsbhz5nz607r";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "UNIX's missing `loop` command";
|
|
homepage = https://github.com/Miserlou/Loop;
|
|
maintainers = with maintainers; [ koral ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|