mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
25 lines
552 B
Nix
25 lines
552 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "filet";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "buffet";
|
|
repo = "filet";
|
|
rev = version;
|
|
sha256 = "0hm7589ih30axafqxhhs4fg1pvfhlqzyzzmfi2ilx8haq5111fsf";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Fucking fucking fast file fucker (afffff)";
|
|
homepage = "https://github.com/buffet/filet";
|
|
license = licenses.mpl20;
|
|
platforms = platforms.all;
|
|
maintainers = [ ];
|
|
mainProgram = "filet";
|
|
};
|
|
}
|